Turn off strictaliasing on solaris

This commit is contained in:
Ryan Dahl 2011-03-26 01:41:54 -07:00
Родитель cbcb7fb019
Коммит 77044ed5fa
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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