diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-07-03 15:28:06 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-07-03 15:28:45 +0200 |
commit | b1cce046467f7fb64710160c5122a7883b739729 (patch) | |
tree | 0bdd4b32a6a95bf170740f7e2d625b1cb9325fee /common.gypi | |
parent | b731c96679247a5dec9b2ed1470cc6c4feea2d1c (diff) | |
download | node-new-b1cce046467f7fb64710160c5122a7883b739729.tar.gz |
build: rename strict_aliasing to node_no_strict_aliasing
Make the variable naming consistent with the other strict aliasing var,
v8_no_strict_aliasing.
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common.gypi b/common.gypi index ca0cf9f3e1..8d60414185 100644 --- a/common.gypi +++ b/common.gypi @@ -1,6 +1,6 @@ { 'variables': { - 'strict_aliasing%': 'false', # turn on/off -fstrict-aliasing + 'node_no_strict_aliasing%': 0, # turn off -fstrict-aliasing 'visibility%': 'hidden', # V8's visibility setting 'target_arch%': 'ia32', # set v8's target architecture 'host_arch%': 'ia32', # set v8's host architecture @@ -52,7 +52,7 @@ # pull in V8's postmortem metadata 'ldflags': [ '-Wl,-z,allextract' ] }], - ['strict_aliasing!="true"', { + ['node_no_strict_aliasing==1', { 'cflags': [ '-fno-strict-aliasing' ], }], ], |