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

mwh at codespeak.net mwh at codespeak.net
Thu Oct 18 12:49:36 CEST 2007


Author: mwh
Date: Thu Oct 18 12:49:36 2007
New Revision: 47540

Modified:
   pypy/dist/pypy/translator/goal/bench-cronjob.py
Log:
now tuatara is back:
1. don't bother trying to build llvm for now
2. tproxies are enabled by default, no need to build that
3. build a semispace build too


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	Thu Oct 18 12:49:36 2007
@@ -176,15 +176,15 @@
 def main(backends=[]):
     if backends == []:  #_ prefix means target specific option, # prefix to outcomment
         backends = [backend.strip() for backend in """
-            llvm--_faassen
+            #llvm--_faassen
             c
             c--stackless--_faassen
             c--_faassen
             c--thread
             c--_objspace=taint
             c--_allworkingmodules
-            c--_objspace-std-withtproxy--_faassen
-            c--gc=framework--_faassen
+            c--gcframework=marksweep--_faassen
+            c--gcframework=semispace--_faassen
             c--_objspace-std-withrope
             cli
             """.split('\n') if backend.strip() and not backend.strip().startswith('#')]



More information about the Pypy-commit mailing list