v8: fix v3 builds by switching to GCC 5 (mksnapshot segfaults with GCC 6)

This commit is contained in:
Aristid Breitkreuz 2017-09-10 17:14:16 +02:00
parent b310053c01
commit 628578f9f8

View File

@ -10642,10 +10642,12 @@ 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;
};
v8_3_24_10 = callPackage ../development/libraries/v8/3.24.10.nix {
inherit (python2Packages) python gyp;
stdenv = overrideCC stdenv gcc5;
};
v8 = callPackage ../development/libraries/v8 {