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:
authorKarl Skomski <karl@skomski.com>2015-09-08 00:57:18 +0300
committerRod Vagg <rod@vagg.org>2015-09-08 16:20:10 +0300
commit0cb0f4a6e499a2a8e8186a8915f0e0af5a03c121 (patch)
treec43b99f498adb52a608cf70761e6992fe11180ae
parent9358eee9dde723d6f842250cf1d20cb21e534e51 (diff)
build: fix v8_enable_handle_zapping override
It was previously ignored by features.gypi and therefore enabled by default for release builds. See https://code.google.com/p/chromium/issues/detail?id=318206 PR-URL: https://github.com/nodejs/node/pull/2731 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
-rw-r--r--common.gypi4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.gypi b/common.gypi
index 7819816bbbd..c57cc5b7b3a 100644
--- a/common.gypi
+++ b/common.gypi
@@ -56,7 +56,7 @@
'configurations': {
'Debug': {
'variables': {
- 'v8_enable_handle_zapping%': 1,
+ 'v8_enable_handle_zapping': 1,
},
'defines': [ 'DEBUG', '_DEBUG' ],
'cflags': [ '-g', '-O0' ],
@@ -83,7 +83,7 @@
},
'Release': {
'variables': {
- 'v8_enable_handle_zapping%': 0,
+ 'v8_enable_handle_zapping': 0,
},
'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
'conditions': [