gcc: don't use profiling on darwin
Darwin seems to have problems on Hydra, maybe because of this.
This commit is contained in:
parent
3996256c26
commit
e855ac5070
1 changed files with 1 additions and 1 deletions
|
@ -2480,7 +2480,7 @@ let
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
|
|
||||||
# PGO seems to speed up compilation by gcc by ~10%, see #445 discussion
|
# PGO seems to speed up compilation by gcc by ~10%, see #445 discussion
|
||||||
profiledCompiler = with stdenv; (isi686 || isx86_64);
|
profiledCompiler = with stdenv; (!isDarwin && (isi686 || isx86_64));
|
||||||
|
|
||||||
# When building `gcc.crossDrv' (a "Canadian cross", with host == target
|
# When building `gcc.crossDrv' (a "Canadian cross", with host == target
|
||||||
# and host != build), `cross' must be null but the cross-libc must still
|
# and host != build), `cross' must be null but the cross-libc must still
|
||||||
|
|
Loading…
Reference in a new issue