3
0
Fork 0
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:
Tuomas Tynkkynen 2015-08-23 20:54:37 +03:00 committed by Vladimír Čunát
parent bd028b24bb
commit 15471a8659

View file

@ -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