[pypy-svn] r69335 - pypy/trunk/pypy/config

arigo at codespeak.net arigo at codespeak.net
Tue Nov 17 11:16:48 CET 2009


Author: arigo
Date: Tue Nov 17 11:16:48 2009
New Revision: 69335

Modified:
   pypy/trunk/pypy/config/translationoption.py
Log:
As expected, PyPy translates and seems to run fine with
both --jit and --thread.  Remove the disabling.


Modified: pypy/trunk/pypy/config/translationoption.py
==============================================================================
--- pypy/trunk/pypy/config/translationoption.py	(original)
+++ pypy/trunk/pypy/config/translationoption.py	Tue Nov 17 11:16:48 2009
@@ -98,7 +98,6 @@
     # JIT generation: use -Ojit to enable it
     BoolOption("jit", "generate a JIT",
                default=False,
-               requires=[("translation.thread", False)],
                suggests=[("translation.gc", "hybrid"),     # or "boehm"
                          ("translation.gcrootfinder", "asmgcc"),
                          ("translation.list_comprehension_operations", True)]),



More information about the Pypy-commit mailing list