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

svn path=/nixpkgs/branches/stdenv-updates/; revision=22970
This commit is contained in:
Lluís Batlle i Rossell 2010-08-05 18:40:58 +00:00
parent 39a2523e79
commit c82f2f533d

View file

@ -1576,7 +1576,9 @@ let
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 =