Skip to content

Commit 77044ed

Browse files
committed
Turn off strictaliasing on solaris
1 parent cbcb7fb commit 77044ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

wscript

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,9 @@ def v8_cmd(bld, variant):
586586
if bld.env["USE_GDBJIT"]:
587587
cmd += ' gdbjit=on '
588588

589-
if sys.platform.startswith("sunos"): cmd += ' toolchain=gcc'
589+
if sys.platform.startswith("sunos"):
590+
cmd += ' toolchain=gcc strictaliasing=off'
591+
590592

591593

592594
return ("echo '%s' && " % cmd) + cmd

0 commit comments

Comments
 (0)