From c466083d3f3e70a53c6528082f02797cdd417500 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 23 Oct 2006 21:51:08 +0000 Subject: [PATCH] * Don't build unnecessary libraries. svn path=/nixpkgs/trunk/; revision=6812 --- pkgs/development/compilers/gcc-static-4.1/builder.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc-static-4.1/builder.sh b/pkgs/development/compilers/gcc-static-4.1/builder.sh index deed3d82e62a..7e20fcebff6e 100644 --- a/pkgs/development/compilers/gcc-static-4.1/builder.sh +++ b/pkgs/development/compilers/gcc-static-4.1/builder.sh @@ -68,7 +68,8 @@ preConfigure() { export LDFLFAGS="-static" configureScript=../$sourceRoot/configure - configureFlags="--enable-languages=c --disable-libstdcxx-pch" + configureFlags="--enable-languages=c --disable-libstdcxx-pch \ + --disable-shared --disable-libmudflap --disable-libssp" }