Merge pull request #70598 from d-goldin/fix_v8_gcc8_log
{v8, v8_6_x}: fix log output exceeded w. GCC8
This commit is contained in:
commit
48724c7b54
@ -97,6 +97,10 @@ stdenv.mkDerivation rec {
|
||||
''v8_snapshot_toolchain="//build/toolchain/linux/unbundle:default"''
|
||||
] ++ stdenv.lib.optional stdenv.cc.isClang ''clang_base_path="${stdenv.cc}"'';
|
||||
|
||||
# with gcc8, -Wclass-memaccess became part of -Wall and causes logging limit
|
||||
# to be exceeded
|
||||
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.cc.isGNU "-Wno-class-memaccess";
|
||||
|
||||
nativeBuildInputs = [ gn ninja pkgconfig python ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ xcbuild darwin.DarwinTools ];
|
||||
buildInputs = [ glib icu ];
|
||||
|
Loading…
Reference in New Issue
Block a user