diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-06-26 02:54:11 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-06-26 03:01:46 +0200 |
commit | 07e5877144d5d719f9bab1f866affb02deb23a0d (patch) | |
tree | 99ab1de9a526dfa59f8ff14251278f5e78b82f10 /configure | |
parent | f60def5e9a72fbfe087c92ec5658d38481bd54ca (diff) | |
download | node-new-07e5877144d5d719f9bab1f866affb02deb23a0d.tar.gz |
build: disable strict aliasing in v8 with gcc 4.5.x
The gcc 4.5.x have various bugs that make V8 crash in various and interesting
ways when -fstrict-aliasing is in effect.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -239,7 +239,7 @@ def host_arch(): def target_arch(): return host_arch() -def cc_version(): +def compiler_version(): try: proc = subprocess.Popen([CC, '-v'], stderr=subprocess.PIPE) except OSError: @@ -254,7 +254,7 @@ def cc_version(): version = version_line.split("version")[1].strip().split()[0].split(".") if not version: return None - return ['LLVM' in version_line] + version + return ('LLVM' in version_line, 'clang' in CC, tuple(version)) def configure_node(o): # TODO add gdb @@ -265,14 +265,20 @@ def configure_node(o): o['variables']['target_arch'] = options.dest_cpu or target_arch() o['default_configuration'] = 'Debug' if options.debug else 'Release' + is_llvm, is_clang, cc_version = compiler_version() + # 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 - o['variables']['strict_aliasing'] = b( - 'clang' in CC or cc_version() >= [False, 4, 6, 0]) + o['variables']['strict_aliasing'] = b(is_clang or cc_version >= (4,6,0)) + + # disable strict aliasing in V8 if we're compiling with gcc 4.5.x, + # it makes V8 crash in various ways + o['variables']['v8_no_strict_aliasing'] = b( + not is_clang and (4,5,0) <= cc_version < (4,6,0)) # clang has always supported -fvisibility=hidden, right? - if 'clang' not in CC and cc_version() < [False, 4, 0, 0]: + if not is_clang and cc_version < (4,0,0): o['variables']['visibility'] = '' # By default, enable DTrace on SunOS systems. Don't allow it on other |