Author: Antonio Cuni <[email protected]>
Branch: 
Changeset: r136:4af8280b2330
Date: 2011-07-25 19:34 +0200
http://bitbucket.org/pypy/benchmarks/changeset/4af8280b2330/

Log:    bah, -O is a required 'option'

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -117,7 +117,7 @@
 
     translate_py = relative('lib/pypy/pypy/translator/goal/translate.py')
     #targetnop = 
relative('lib/pypy/pypy/translator/goal/targetnopstandalone.py')
-    args = base_python + [translate_py, '--source', '--dont-write-c-files']
+    args = base_python + [translate_py, '--source', '--dont-write-c-files', 
'-O2']
     proc = subprocess.Popen(args, stderr=subprocess.PIPE)
     out, err = proc.communicate()
     retcode = proc.poll()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to