[pypy-svn] r57392 - pypy/dist/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Mon Aug 18 10:53:13 CEST 2008


Author: arigo
Date: Mon Aug 18 10:53:11 2008
New Revision: 57392

Modified:
   pypy/dist/pypy/translator/goal/bench-cronjob.py
Log:
Tweak the command lines to continue building the same pypy's as before.


Modified: pypy/dist/pypy/translator/goal/bench-cronjob.py
==============================================================================
--- pypy/dist/pypy/translator/goal/bench-cronjob.py	(original)
+++ pypy/dist/pypy/translator/goal/bench-cronjob.py	Mon Aug 18 10:53:11 2008
@@ -180,16 +180,16 @@
 def main(backends=[]):
     if backends == []:  #_ prefix means target specific option, # prefix to outcomment
         backends = [backend.strip() for backend in """
-            c--opt=0
-            c--stackless--opt=3
-            c--opt=3--_allworkingmodules
-            c--thread--gc=hybrid--opt=3
-            c--gc=semispace--opt=3
-            c--gc=generation--opt=3
-            c--gc=hybrid--opt=3
-            cli--opt=3
-            jvm--opt=3
-            jvm--inline-threshold=0--opt=3
+            c--opt=0--_no-allworkingmodules
+            c--stackless--opt=3--_no-allworkingmodules
+            c--opt=3
+            c--thread--gc=hybrid--opt=3--_no-allworkingmodules
+            c--gc=semispace--opt=3--_no-allworkingmodules
+            c--gc=generation--opt=3--_no-allworkingmodules
+            c--gc=hybrid--opt=3--_no-allworkingmodules
+            cli--opt=3--_no-allworkingmodules
+            jvm--opt=3--_no-allworkingmodules
+            jvm--inline-threshold=0--opt=3--_no-allworkingmodules
             """.split('\n') if backend.strip() and not backend.strip().startswith('#')]
     print time.ctime()
     for backend in backends:



More information about the Pypy-commit mailing list