summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-02-08 14:27:42 -0500
committerShea Levy <shea@shealevy.com>2013-02-08 14:27:42 -0500
commit86feda11066dfc41e527a4c7e7370b897a6c9534 (patch)
tree3dba447ebff24dd2f6554cb78580a9a8a16236f1 /pkgs/development/compilers
parent265fea5788eb8ba21244263081064c5c306fe386 (diff)
downloadnixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar.gz
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar.bz2
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar.lz
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar.xz
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.tar.zst
nixlib-86feda11066dfc41e527a4c7e7370b897a6c9534.zip
Add multilib gcc-4.6.
libquadmath seems to require that the bootstrap gcc be multilib too.
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/gcc/4.6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix
index c94a9285b29b..b77fd0885016 100644
--- a/pkgs/development/compilers/gcc/4.6/default.nix
+++ b/pkgs/development/compilers/gcc/4.6/default.nix
@@ -251,7 +251,7 @@ stdenv.mkDerivation ({
         [ "--with-host-libstdcxx=-lstdc++ -lgcc_s" ];
 
   configureFlags = "
-    ${if enableMultilib then "" else "--disable-multilib"}
+    ${if enableMultilib then "--disable-libquadmath" else "--disable-multilib"}
     ${if enableShared then "" else "--disable-shared"}
     ${if enablePlugin then "--enable-plugin" else ""}
     ${if ppl != null then "--with-ppl=${ppl}" else ""}