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

arigo at codespeak.net arigo at codespeak.net
Wed Aug 20 17:30:42 CEST 2008


Author: arigo
Date: Wed Aug 20 17:30:40 2008
New Revision: 57519

Modified:
   pypy/dist/pypy/translator/goal/bench-cronjob.py
Log:
Oups oups oups.  Forgot that the default GC is no longer Boehm
if we say --opt=3.


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	Wed Aug 20 17:30:40 2008
@@ -181,8 +181,8 @@
     if backends == []:  #_ prefix means target specific option, # prefix to outcomment
         backends = [backend.strip() for backend in """
             c--opt=0--_no-allworkingmodules
-            c--stackless--opt=3--_no-allworkingmodules
-            c--opt=3
+            c--stackless--gc=boehm--opt=3--_no-allworkingmodules
+            c--gc=boehm--opt=3
             c--thread--gc=hybrid--opt=3--_no-allworkingmodules
             c--gc=semispace--opt=3--_no-allworkingmodules
             c--gc=generation--opt=3--_no-allworkingmodules



More information about the Pypy-commit mailing list