Sha256: 6ab31da2e81ac692cd36ab868092d83eeb51b9a2286ef756feedc830f9a4e21f
Contents?: true
Size: 1.19 KB
Versions: 11
Compression:
Stored size: 1.19 KB
Contents
diff --git a/build/common.gypi b/build/common.gypi index 3a59639..14bf0f9 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -376,7 +376,8 @@ }], ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', - '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], + '-Wnon-virtual-dtor', '-Woverloaded-virtual', + '-Wno-unused-private-field' ], }], ['OS=="linux" and v8_enable_backtrace==1', { # Support for backtrace_symbols. diff --git a/build/standalone.gypi b/build/standalone.gypi index 125c5bf..c8d9b4f 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -98,7 +98,8 @@ 'target_defaults': { 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', - '-fno-exceptions', '-pedantic' ], + '-fno-exceptions', '-pedantic', + '-Wno-unused-private-field' ], 'ldflags': [ '-pthread', ], 'conditions': [ [ 'OS=="linux"', {
Version data entries
11 entries across 11 versions & 2 rubygems