summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/6/default.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2016-09-01 09:50:30 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2016-09-15 17:54:01 -0500
commit45cd1ea620398d7981c9d7c7b8e50d15d99830fa (patch)
treeaa20ea5e7a7caed97ce33d6242a6029f89fae383 /pkgs/development/compilers/gcc/6/default.nix
parent7a6b860e1c5c6e35719631ff3599521144990077 (diff)
downloadnixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar.gz
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar.bz2
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar.lz
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar.xz
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.tar.zst
nixpkgs-45cd1ea620398d7981c9d7c7b8e50d15d99830fa.zip
gcc: --enable-bootstrap on Darwin
This seems to be working now. ISL needs to be disable for it to build
completely though.
Diffstat (limited to 'pkgs/development/compilers/gcc/6/default.nix')
-rw-r--r--pkgs/development/compilers/gcc/6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index 129bde908fa..6a1616154cb 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -201,7 +201,7 @@ let version = "6.2.0";
     stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
     crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
 
-  bootstrap = cross == null && !stdenv.isDarwin;
+  bootstrap = cross == null;
 
 in