[pypy-svn] r67223 - pypy/build/bot2/pypybuildbot

arigo at codespeak.net arigo at codespeak.net
Wed Aug 26 22:09:40 CEST 2009


Author: arigo
Date: Wed Aug 26 22:09:39 2009
New Revision: 67223

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Translate pypy-c-jit with our own GC now, to avoid seeing in lib-python
the memory-not-freed-early-enough bugs common to pypy-c-boehm.


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Wed Aug 26 22:09:39 2009
@@ -200,7 +200,7 @@
 
         setup_steps(platform, self)
 
-        self.addStep(Translate(['-Ojit', '--gc=boehm'], 
+        self.addStep(Translate(['-Ojit', '--gc=hybrid','--gcrootfinder=asmgcc'],
                                ['--withoutmod-thread']))
         
         self.addStep(ShellCmd(



More information about the Pypy-commit mailing list