diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-03-26 01:41:54 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-03-26 01:42:08 -0700 |
commit | 77044ed5fa7cb1327c3cfe82aeeb154a3d318153 (patch) | |
tree | cc041509e21703815c20c44f2310a6c034078e9a /wscript | |
parent | cbcb7fb019c2a5c4176559c0eb370c9d85571d06 (diff) | |
download | node-new-77044ed5fa7cb1327c3cfe82aeeb154a3d318153.tar.gz |
Turn off strictaliasing on solaris
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |