Turn off strictaliasing on solaris

v0.7.4-release
Ryan Dahl 2011-03-26 01:41:54 -07:00
parent cbcb7fb019
commit 77044ed5fa
1 changed files with 3 additions and 1 deletions

View File

@ -586,7 +586,9 @@ def v8_cmd(bld, variant):
if bld.env["USE_GDBJIT"]:
cmd += ' gdbjit=on '
if sys.platform.startswith("sunos"): cmd += ' toolchain=gcc'
if sys.platform.startswith("sunos"):
cmd += ' toolchain=gcc strictaliasing=off'
return ("echo '%s' && " % cmd) + cmd