[pypy-svn] r36266 - pypy/dist/pypy/tool/build
guido at codespeak.net
guido at codespeak.net
Mon Jan 8 14:40:53 CET 2007
Author: guido
Date: Mon Jan 8 14:40:51 2007
New Revision: 36266
Modified:
pypy/dist/pypy/tool/build/config.py
Log:
(cfbolz, guido) gc=boehm is now default
Modified: pypy/dist/pypy/tool/build/config.py
==============================================================================
--- pypy/dist/pypy/tool/build/config.py (original)
+++ pypy/dist/pypy/tool/build/config.py Mon Jan 8 14:40:51 2007
@@ -21,7 +21,8 @@
# cmdline args, defaults are taken from the optiondescription
from pypy.config.pypyoption import get_pypy_config
compile_config = get_pypy_config()
-compile_config.override({'translation.backend': 'c'})
+compile_config.override({'translation.backend': 'c',
+ 'translation.gc': 'boehm'})
# settings for the server
projectname = 'pypy'
More information about the pypy-svn
mailing list