v8_3_16_14: fix on darwin
This was switched to use gcc5 for all platforms due to a mkSnapshot error, which fixes Linux but currently fails for Darwin. I'm unsure if there are other runtime failures, but this hasn't been building for quite some time.
This commit is contained in:
parent
91eb41b138
commit
72cd8c09ce
1 changed files with 1 additions and 1 deletions
|
@ -11310,7 +11310,7 @@ with pkgs;
|
|||
v8_3_16_14 = callPackage ../development/libraries/v8/3.16.14.nix {
|
||||
inherit (python2Packages) python gyp;
|
||||
cctools = darwin.cctools;
|
||||
stdenv = overrideCC stdenv gcc5;
|
||||
stdenv = if stdenv.isDarwin then stdenv else overrideCC stdenv gcc5;
|
||||
};
|
||||
|
||||
v8_6_x = callPackage ../development/libraries/v8/6_x.nix {
|
||||
|
|
Loading…
Reference in a new issue