[pypy-svn] r64151 - pypy/trunk/pypy/translator/goal

antocuni at codespeak.net antocuni at codespeak.net
Thu Apr 16 13:07:44 CEST 2009


Author: antocuni
Date: Thu Apr 16 13:07:44 2009
New Revision: 64151

Modified:
   pypy/trunk/pypy/translator/goal/targetpypystandalone.py
Log:
always enable --withmod-rbench for oo backends, as it's very useful for benchmarking


Modified: pypy/trunk/pypy/translator/goal/targetpypystandalone.py
==============================================================================
--- pypy/trunk/pypy/translator/goal/targetpypystandalone.py	(original)
+++ pypy/trunk/pypy/translator/goal/targetpypystandalone.py	Thu Apr 16 13:07:44 2009
@@ -145,6 +145,9 @@
             from pypy.config.pypyoption import enable_allworkingmodules
             enable_allworkingmodules(config)
 
+        if config.translation.type_system == 'ootype':
+            config.objspace.usemodules.suggest(rbench=True)
+
         if config.translation.thread:
             config.objspace.usemodules.thread = True
         elif config.objspace.usemodules.thread:



More information about the Pypy-commit mailing list