forked from mirrors/nixpkgs
gcc47: disabling parallel build if profiled bootstrap required
The gccinstall manual says that parallel building with a profiled bootstrap is not supported. As we don't have much means of checking if our profiled bootstrap with parallel build was good or bad, I propose going to safe terrain.
This commit is contained in:
parent
592b980931
commit
f682ff3521
1 changed files with 5 additions and 1 deletions
|
@ -408,7 +408,11 @@ stdenv.mkDerivation ({
|
||||||
passthru = { inherit langC langCC langAda langFortran langVhdl
|
passthru = { inherit langC langCC langAda langFortran langVhdl
|
||||||
langGo enableMultilib version; };
|
langGo enableMultilib version; };
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
/* From gccinstall.info:
|
||||||
|
"parallel make is currently not supported since collisions in profile
|
||||||
|
collecting may occur"
|
||||||
|
*/
|
||||||
|
enableParallelBuilding = !profiledCompiler;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://gcc.gnu.org/;
|
homepage = http://gcc.gnu.org/;
|
||||||
|
|
Loading…
Add table
Reference in a new issue