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

fijal at codespeak.net fijal at codespeak.net
Sun Nov 9 19:17:35 CET 2008


Author: fijal
Date: Sun Nov  9 19:17:34 2008
New Revision: 59840

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Due to problem with threading, use different gc and threads


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Sun Nov  9 19:17:34 2008
@@ -154,8 +154,8 @@
         setup_steps(platform, self, WORKDIR)
         workdir = os.path.join(WORKDIR, 'pypy', 'translator', 'goal')
 
-        self.addStep(Translate(["--platform", "maemo", "-Omem"], ["--withoutmod-thread"],
-                               workdir=workdir))
+        self.addStep(Translate(["--platform", "maemo", "-Omem", "--gc=hybrid"],
+                               [], workdir=workdir))
         
         self.addStep(ShellCmd(
             description="app-level (-A) test",



More information about the Pypy-commit mailing list