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 /configure | |
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 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -287,9 +287,9 @@ def configure_node(o): # turn off strict aliasing if gcc < 4.6.0 unless it's llvm-gcc # see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883 # see http://code.google.com/p/v8/issues/detail?id=884 - strict_aliasing = is_clang or cc_version >= (4,6,0) - o['variables']['strict_aliasing'] = b(strict_aliasing) - o['variables']['v8_no_strict_aliasing'] = b(not strict_aliasing) + no_strict_aliasing = int(not(is_clang or cc_version >= (4,6,0))) + o['variables']['v8_no_strict_aliasing'] = no_strict_aliasing + o['variables']['node_no_strict_aliasing'] = no_strict_aliasing # clang has always supported -fvisibility=hidden, right? if not is_clang and cc_version < (4,0,0): |