Skip to content

Commit

Permalink
Merge pull request #36515 from xeji/v8-gcc6
Browse files Browse the repository at this point in the history
v8: build with gcc6
  • Loading branch information
Mic92 authored Mar 9, 2018
2 parents 9a9eb3e + aa5a079 commit b306490
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11595,11 +11595,14 @@ with pkgs;
inherit (python2Packages) python;
};

v8 = callPackage ../development/libraries/v8 {
v8 = callPackage ../development/libraries/v8 ({
inherit (python2Packages) python gyp;
cctools = darwin.cctools;
icu = icu58; # v8-5.4.232 fails against icu4c-59.1
};
} // lib.optionalAttrs stdenv.isLinux {
# doesn't build with gcc7
stdenv = overrideCC stdenv gcc6;
});

v8_static = lowPrio (self.v8.override { static = true; });

Expand Down

0 comments on commit b306490

Please sign in to comment.