Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Turn off strictaliasing on solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Mar 26, 2011
1 parent cbcb7fb commit 77044ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wscript
Expand Up @@ -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
Expand Down

0 comments on commit 77044ed

Please sign in to comment.