Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2012-08-28 04:54:22 +0400
committerBert Belder <bertbelder@gmail.com>2012-08-28 04:54:22 +0400
commitbf16d9280ea7aadce5c5437184c1d80e651a997a (patch)
tree85c570a9c80181c9bd84ce8bcc726d644daa36db /common.gypi
parent4822d780bb913c9ef7c2301a181a5834887cddb4 (diff)
parent24184345688e1f545ffc87e5742de06ed9855007 (diff)
Merge branch 'v0.8'
Conflicts: ChangeLog deps/openssl/openssl.gyp src/node_version.h
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi6
1 files changed, 4 insertions, 2 deletions
diff --git a/common.gypi b/common.gypi
index 40d0b4562d6..f198d331296 100644
--- a/common.gypi
+++ b/common.gypi
@@ -66,9 +66,12 @@
}, {
'cflags!': [ '-ffunction-sections', '-fdata-sections' ],
}],
- ['clang==1 or gcc_version >= 40', {
+ ['clang == 0 and gcc_version >= 40', {
'cflags': [ '-fno-tree-vrp' ],
}],
+ ['clang == 0 and gcc_version <= 44', {
+ 'cflags': [ '-fno-tree-sink' ],
+ }],
],
}],
['OS=="solaris"', {
@@ -190,7 +193,6 @@
'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
'GCC_VERSION': '4.2',
- 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
'PREBINDING': 'NO', # No -Wl,-prebind
'MACOSX_DEPLOYMENT_TARGET': '10.5', # -mmacosx-version-min=10.5
'USE_HEADERMAP': 'NO',