From 15471a86595a0ec7d558b856d0c3f1c6169d4966 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sun, 23 Aug 2015 20:54:37 +0300 Subject: [PATCH] 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 --- pkgs/development/compilers/gcc/4.9/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix index 430e4ea1bf9..07dca989c9b 100644 --- a/pkgs/development/compilers/gcc/4.9/default.nix +++ b/pkgs/development/compilers/gcc/4.9/default.nix @@ -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