forked from mirrors/nixpkgs
gcc: Do bootstrapped compilation on MIPS and ARM as well
Since the multiple-output changes building a non-bootstrapped gcc doesn't work anymore. TODO: also test if cross compilation is broken
This commit is contained in:
parent
bd028b24bb
commit
15471a8659
|
@ -196,7 +196,7 @@ let version = "4.9.3";
|
|||
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
|
||||
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
|
||||
|
||||
bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips;
|
||||
bootstrap = cross == null;
|
||||
|
||||
in
|
||||
|
||||
|
|
Loading…
Reference in a new issue