[pypy-svn] r36603 - pypy/dist/pypy/config

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jan 12 18:37:19 CET 2007


Author: cfbolz
Date: Fri Jan 12 18:37:14 2007
New Revision: 36603

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
--faassen and --allworkingmodules use suggest now


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Fri Jan 12 18:37:14 2007
@@ -80,7 +80,7 @@
     BoolOption("allworkingmodules", "use as many working modules as possible",
                default=False,
                cmdline="--allworkingmodules",
-               requires=[("objspace.usemodules.%s" % (modname, ), True)
+               suggests=[("objspace.usemodules.%s" % (modname, ), True)
                              for modname in working_modules
                              if modname in all_modules],
                negation=False),
@@ -168,7 +168,7 @@
         BoolOption("allopts",
                    "enable all thought-to-be-working optimizations",
                    default=False,
-                   requires=[("objspace.opcodes.CALL_LIKELY_BUILTIN", True),
+                   suggests=[("objspace.opcodes.CALL_LIKELY_BUILTIN", True),
                              ("translation.withsmallfuncsets", 5),
                              ("translation.profopt",
                               "-c 'from richards import main;main(); from test import pystone; pystone.main()'"),



More information about the Pypy-commit mailing list