diff options
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common.gypi b/common.gypi index 61172ef238..877464af3e 100644 --- a/common.gypi +++ b/common.gypi @@ -55,7 +55,6 @@ 'msvs_configuration_platform': 'x64', }], ['OS=="solaris"', { - 'cflags': [ '-fno-omit-frame-pointer' ], # pull in V8's postmortem metadata 'ldflags': [ '-Wl,-z,allextract' ] }, { @@ -68,6 +67,9 @@ ['clang == 0 and gcc_version <= 44', { 'cflags': [ '-fno-tree-sink' ], # Work around compiler bug. }], + ['OS!="mac" and OS!="win"', { + 'cflags': [ '-fno-omit-frame-pointer' ], + }], ], 'msvs_settings': { 'VCCLCompilerTool': { |