summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/4.5
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-12-18 15:41:24 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-12-18 15:41:24 +0100
commit04c364d181cad9e0bd196885ee3e0f3bb139168d (patch)
tree826aab33eb9bd87ff01a44565a5cabfdb2d87a29 /pkgs/development/compilers/gcc/4.5
parentc9cd03f3e5012aa7ab7c20e326a16a87156e8444 (diff)
downloadnixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar.gz
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar.bz2
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar.lz
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar.xz
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.tar.zst
nixlib-04c364d181cad9e0bd196885ee3e0f3bb139168d.zip
gnat: Attempt to fix random build failures
Sometimes the build failes with:

  In file included from ../../gcc-4.4.6/gcc/ada/seh_init.c:44:
  ../../gcc-4.4.6/gcc/system.h:418: error: conflicting types for 'strsignal'
  /nix/store/6h129q168ahnl2nzw6azr239cba884ng-glibc-2.18/include/string.h:560: note: previous declaration of 'strsignal' was here

and sometimes it doesn't.  Hopefully disabling parallel builds fixes
this.

http://hydra.nixos.org/build/7179481
Diffstat (limited to 'pkgs/development/compilers/gcc/4.5')
-rw-r--r--pkgs/development/compilers/gcc/4.5/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index cb0432b66728..e63ff7947f66 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -360,7 +360,7 @@ stdenv.mkDerivation ({
   passthru = { inherit langC langCC langAda langFortran langVhdl
       enableMultilib version; };
 
-  enableParallelBuilding = true;
+  enableParallelBuilding = !langAda;
 
   meta = {
     homepage = http://gcc.gnu.org/;