[pypy-svn] r33395 - in pypy/branch/even-more-config3/pypy: config translator

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Oct 18 00:45:47 CEST 2006


Author: cfbolz
Date: Wed Oct 18 00:45:46 2006
New Revision: 33395

Modified:
   pypy/branch/even-more-config3/pypy/config/pypyoption.py
   pypy/branch/even-more-config3/pypy/translator/driver.py
Log:
(pedronis, cfbolz): changes required by the last refactoring plus a typo


Modified: pypy/branch/even-more-config3/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/even-more-config3/pypy/config/pypyoption.py	(original)
+++ pypy/branch/even-more-config3/pypy/config/pypyoption.py	Wed Oct 18 00:45:46 2006
@@ -50,7 +50,8 @@
                        cmdline="--withmod-%s" % (modname, ))
             for modname in all_modules]),
 
-        BoolOption("geninterp", "specify whether geninterp should be used"),
+        BoolOption("geninterp", "specify whether geninterp should be used",
+                   default=True),
 
         BoolOption("logbytecodes",
                    "keep track of bytecode usage",
@@ -141,9 +142,9 @@
                    requires=[("objspace.geninterp", False)]),
 
         # misc
-        StrOption("cc", "Specify compiler", default='', cmdline="--cc"),
+        StrOption("cc", "Specify compiler", cmdline="--cc"),
         StrOption("profopt", "Specify profile based optimization script",
-                  default="", cmdline="--profopt"),
+                  cmdline="--profopt"),
         BoolOption("debug_transform", "Perform the debug transformation",
                    default=False, cmdline=None, negation=False),
 

Modified: pypy/branch/even-more-config3/pypy/translator/driver.py
==============================================================================
--- pypy/branch/even-more-config3/pypy/translator/driver.py	(original)
+++ pypy/branch/even-more-config3/pypy/translator/driver.py	Wed Oct 18 00:45:46 2006
@@ -26,7 +26,7 @@
   'translation.insist': False,
   'translation.backend': 'c',
   'translation.lowmem': False,
-  'translation.goals.fork_before': None,
+  'translation.fork_before': None,
   'translation.backendopt.raisingop2direct_call' : False,
   'translation.backendopt.merge_if_blocks': True,
   'translation.debug_transform' : False,



More information about the Pypy-commit mailing list