v8: fix build(s)
Ignore errors due to strict-overflow warnings; strip clang-only flag on non-clang builds. Concerning the latter "fix", it's not entirely clear to me why the -Wno-format-pedantic flag ends up being passed to gcc, the .gyp file appears to already condition the inclusion of this flag on whether cc=clang.
This commit is contained in:
parent
c61445357e
commit
72b5bfda97
1 changed files with 6 additions and 0 deletions
|
@ -41,6 +41,8 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ readline python icu ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";
|
||||
|
||||
buildFlags = [
|
||||
"LINK=g++"
|
||||
"-C out"
|
||||
|
@ -48,6 +50,10 @@ stdenv.mkDerivation rec {
|
|||
"BUILDTYPE=Release"
|
||||
];
|
||||
|
||||
postPatch = stdenv.lib.optionalString (!stdenv.cc.isClang) ''
|
||||
sed -i build/standalone.gyp -e 's,-Wno-format-pedantic,,g'
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue