gcc: --enable-bootstrap on Darwin

This seems to be working now. ISL needs to be disable for it to build
completely though.
This commit is contained in:
Matthew Bauer
2016-09-01 09:50:30 -05:00
parent 7a6b860e1c
commit 45cd1ea620
6 changed files with 10 additions and 10 deletions

View File

@@ -170,7 +170,7 @@ let version = "4.6.4";
"-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips && !stdenv.isDarwin;
bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips;
in

View File

@@ -198,7 +198,7 @@ let version = "4.8.5";
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 && !stdenv.isDarwin;
bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips;
in

View File

@@ -202,7 +202,7 @@ let version = "4.9.4";
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

View File

@@ -202,7 +202,7 @@ let version = "5.4.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

View File

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