| Index: build/standalone.gypi
|
| diff --git a/build/standalone.gypi b/build/standalone.gypi
|
| index cf89f74d3c429913080bf2f1681268c4b93fd4e4..8bafda91d13e1c0be964602ac7e480b3ce051e7e 100644
|
| --- a/build/standalone.gypi
|
| +++ b/build/standalone.gypi
|
| @@ -338,7 +338,6 @@
|
| '-fPIC',
|
| ],
|
| 'cflags!': [
|
| - '-fno-exceptions',
|
| '-fomit-frame-pointer',
|
| ],
|
| 'ldflags': [
|
| @@ -387,12 +386,16 @@
|
| '-Wno-unused-parameter',
|
| '-Wno-long-long',
|
| '-pthread',
|
| - '-fno-exceptions',
|
| '-pedantic',
|
| # Don't warn about the "struct foo f = {0};" initialization pattern.
|
| '-Wno-missing-field-initializers',
|
| ],
|
| - 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ],
|
| + 'cflags_cc': [
|
| + '-Wnon-virtual-dtor',
|
| + '-fno-exceptions',
|
| + '-fno-rtti',
|
| + '-std=gnu++0x',
|
| + ],
|
| 'ldflags': [ '-pthread', ],
|
| 'conditions': [
|
| [ 'clang==1 and (v8_target_arch=="x64" or v8_target_arch=="arm64")', {
|
| @@ -418,11 +421,15 @@
|
| '-Wall',
|
| '<(werror)',
|
| '-Wno-unused-parameter',
|
| - '-fno-exceptions',
|
| # Don't warn about the "struct foo f = {0};" initialization pattern.
|
| '-Wno-missing-field-initializers',
|
| ],
|
| - 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-std=gnu++0x' ],
|
| + 'cflags_cc': [
|
| + '-Wnon-virtual-dtor',
|
| + '-fno-exceptions',
|
| + '-fno-rtti',
|
| + '-std=gnu++0x',
|
| + ],
|
| 'conditions': [
|
| [ 'visibility=="hidden"', {
|
| 'cflags': [ '-fvisibility=hidden' ],
|
|
|