[pypy-svn] r76300 - pypy/branch/x86-64-jit-backend/pypy/config

jcreigh at codespeak.net jcreigh at codespeak.net
Wed Jul 21 16:23:55 CEST 2010


Author: jcreigh
Date: Wed Jul 21 16:23:47 2010
New Revision: 76300

Modified:
   pypy/branch/x86-64-jit-backend/pypy/config/translationoption.py
Log:
select boehm with 64-bit JIT in a less fragile way

Modified: pypy/branch/x86-64-jit-backend/pypy/config/translationoption.py
==============================================================================
--- pypy/branch/x86-64-jit-backend/pypy/config/translationoption.py	(original)
+++ pypy/branch/x86-64-jit-backend/pypy/config/translationoption.py	Wed Jul 21 16:23:47 2010
@@ -344,7 +344,7 @@
 
 # For now, 64-bit JIT requires boehm
 if IS_64_BITS:
-    OPT_TABLE['jit'] = 'boehm extraopts jit'
+    OPT_TABLE['jit'] = OPT_TABLE['jit'].replace('hybrid', 'boehm')
 
 def set_opt_level(config, level):
     """Apply optimization suggestions on the 'config'.



More information about the Pypy-commit mailing list