summaryrefslogtreecommitdiff
path: root/common.gypi
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2013-12-01 19:43:34 -0800
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-12-01 19:43:34 -0800
commit001f9b46e72ac98b29b845630bfc88d481c559ad (patch)
tree9b9bf605772acb69ec435f7a1dac87d10b9f3db9 /common.gypi
parent5ce4eed54dceb15c34d3508e733124edd282601b (diff)
parent6877e64fa8ebd1a1017bb4e298a007d98136c133 (diff)
downloadandroid-node-v8-001f9b46e72ac98b29b845630bfc88d481c559ad.tar.gz
android-node-v8-001f9b46e72ac98b29b845630bfc88d481c559ad.tar.bz2
android-node-v8-001f9b46e72ac98b29b845630bfc88d481c559ad.zip
Merge remote-tracking branch 'upstream/v0.10'
Conflicts: src/stream_wrap.cc
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi4
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': {