mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
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:
parent
39a2523e79
commit
c82f2f533d
@ -1576,7 +1576,9 @@ let
|
|||||||
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib perl
|
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib perl
|
||||||
ppl cloogppl
|
ppl cloogppl
|
||||||
gettext which noSysDirs;
|
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 =
|
gccApple =
|
||||||
|
Loading…
Reference in New Issue
Block a user