aboutsummaryrefslogtreecommitdiff
path: root/tools/shared.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-10-16 14:22:39 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-10-17 12:44:21 -0700
commit30dd27f91663b1ef2a8e04fec23ad774fa958be7 (patch)
tree11fb9bafff73de1d6b9234ff5bd563e86b513f38 /tools/shared.py
parent768cdc3b9100b0d663292150a421a635ec0dbf57 (diff)
stop working around v8 bug 1985 which was fixed a while ago
Diffstat (limited to 'tools/shared.py')
-rw-r--r--tools/shared.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/shared.py b/tools/shared.py
index 2d237b71..6c7c654c 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -919,8 +919,8 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)''' % { 'winfix': '' if not WINDOWS e
if type(passes) == str:
passes = [passes]
- # XXX Disable crankshaft to work around v8 bug 1895
- output = Popen([NODE_JS, '--nocrankshaft', JS_OPTIMIZER, filename] + passes, stdout=PIPE).communicate()[0]
+ # XXX Might need to disable crankshaft to work around v8 bug 1895 , '--nocrankshaft'
+ output = Popen([NODE_JS, JS_OPTIMIZER, filename] + passes, stdout=PIPE).communicate()[0]
assert len(output) > 0 and not output.startswith('Assertion failed'), 'Error in js optimizer: ' + output
filename += '.jo.js'
f = open(filename, 'w')