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

jcreigh at codespeak.net jcreigh at codespeak.net
Wed Jul 21 15:14:54 CEST 2010


Author: jcreigh
Date: Wed Jul 21 15:14:53 2010
New Revision: 76296

Modified:
   pypy/branch/x86-64-jit-backend/pypy/config/translationoption.py
Log:
use boehm GC by default when translating 64-bit JIT

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 15:14:53 2010
@@ -342,6 +342,10 @@
     'jit':  'hybrid      extraopts     jit',
     }
 
+# For now, 64-bit JIT requires boehm
+if IS_64_BITS:
+    OPT_TABLE['jit'] = 'boehm extraopts jit'
+
 def set_opt_level(config, level):
     """Apply optimization suggestions on the 'config'.
     The optimizations depend on the selected level and possibly on the backend.



More information about the Pypy-commit mailing list