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

jcreigh at codespeak.net jcreigh at codespeak.net
Mon Aug 9 16:09:39 CEST 2010


Author: jcreigh
Date: Mon Aug  9 16:09:36 2010
New Revision: 76545

Modified:
   pypy/build/bot2/pypybuildbot/master.py
Log:
add buildbot target for 64-bit JIT

Modified: pypy/build/bot2/pypybuildbot/master.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/master.py	(original)
+++ pypy/build/bot2/pypybuildbot/master.py	Mon Aug  9 16:09:36 2010
@@ -72,8 +72,7 @@
     lib_python=True,
     app_tests=True)
 
-jit_translation_args = ['-Ojit', '--gc=hybrid',
-                        '--gcrootfinder=asmgcc']
+jit_translation_args = ['-Ojit']
 
 pypyJITTranslatedTestFactory = pypybuilds.Translated(
     translationArgs=jit_translation_args,
@@ -121,6 +120,7 @@
 STACKLESSAPPLVLFREEBSD64 = 'pypy-c-stackless-app-level-freebsd-7-x86-64'
 
 JITLINUX32 = "pypy-c-jit-linux-x86-32"
+JITLINUX64 = "pypy-c-jit-linux-x86-64"
 OJITLINUX32 = "pypy-c-Ojit-no-jit-linux-x86-32"
 JITMACOSX32 = "pypy-c-jit-macosx-x86-32"
 JITWIN32 = "pypy-c-jit-win-x86-32"
@@ -210,6 +210,12 @@
                    'factory' : pypyJITTranslatedTestFactory,
                    'category' : 'jit',
                    },
+                  {'name': JITLINUX64,
+                   'slavenames': ['tannit64'],
+                   'builddir': JITLINUX64,
+                   'factory': pypyJITTranslatedTestFactory,
+                   'category': 'jit',
+                  },
                   {"name" : JITMACOSX32,
                    "slavenames": ["minime"],
                    'builddir' : JITMACOSX32,



More information about the Pypy-commit mailing list