mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
* Put back in the code to do a profiled GCC build, but turn in off
(build ICEs). svn path=/nixpkgs/trunk/; revision=6861
This commit is contained in:
parent
43fb5626d6
commit
2d3cfb2058
2 changed files with 7 additions and 1 deletions
|
@ -73,4 +73,10 @@ postInstall() {
|
|||
}
|
||||
|
||||
|
||||
if test -z "$profiledCompiler"; then
|
||||
makeFlags="bootstrap $makeFlags"
|
||||
else
|
||||
makeFlags="profiledbootstrap $makeFlags"
|
||||
fi
|
||||
|
||||
genericBuild
|
||||
|
|
|
@ -641,7 +641,7 @@ rec {
|
|||
|
||||
gcc41 = wrapGCC (import ../development/compilers/gcc-4.1 {
|
||||
inherit fetchurl stdenv noSysDirs;
|
||||
profiledCompiler = true;
|
||||
profiledCompiler = false;
|
||||
});
|
||||
|
||||
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
||||
|
|
Loading…
Reference in a new issue