Author: viric
Date: Thu Aug  5 18:40:58 2010
New Revision: 22970
URL: https://svn.nixos.org/websvn/nix/?rev=22970&sc=1

Log:
Avoiding to make a profiled bootstrap of gcc on armv5tel-linux, because it 
fails there.

Modified:
   nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix

Modified: nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix     Thu Aug 
 5 18:37:30 2010        (r22969)
+++ nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix     Thu Aug 
 5 18:40:58 2010        (r22970)
@@ -1576,7 +1576,9 @@
     inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib perl
       ppl cloogppl
       gettext which noSysDirs;
-    profiledCompiler = true;
+    # bootstrapping a profiled compiler does not work in the sheevaplug:
+    # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43944
+    profiledCompiler = if stdenv.system == "armv5tel-linux" then false else 
true;
   }));
 
   gccApple =
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to