[pypy-commit] buildbot default: Revert this part of the change: use the default options on all

arigo noreply at buildbot.pypy.org
Wed Aug 3 15:30:39 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r550:4eb5a8b112cf
Date: 2011-08-03 15:31 +0200
http://bitbucket.org/pypy/buildbot/changeset/4eb5a8b112cf/

Log:	Revert this part of the change: use the default options on all
	platforms.

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -130,7 +130,6 @@
     interpreter='python')
 
 jit_translation_args = ['-Ojit']
-jit_translation_args_shadowstack = ['-Ojit', '--gcrootfinder=shadowstack']
 
 pypyJITTranslatedTestFactory = pypybuilds.Translated(
     translationArgs=jit_translation_args,
@@ -150,7 +149,7 @@
 
 pypyJITTranslatedTestFactoryOSX = pypybuilds.Translated(
     platform='osx',
-    translationArgs=jit_translation_args_shadowstack,
+    translationArgs=jit_translation_args,
     targetArgs=[],
     lib_python=True,
     pypyjit=True,
@@ -160,7 +159,7 @@
 
 pypyJITTranslatedTestFactoryOSX64 = pypybuilds.Translated(
     platform='osx64',
-    translationArgs=jit_translation_args_shadowstack,
+    translationArgs=jit_translation_args,
     targetArgs=[],
     lib_python=True,
     pypyjit=True,
@@ -170,7 +169,7 @@
 
 pypyJITTranslatedTestFactoryWin = pypybuilds.Translated(
     platform="win32",
-    translationArgs=jit_translation_args_shadowstack,
+    translationArgs=jit_translation_args,
     targetArgs=[],
     lib_python=True,
     pypyjit=True,


More information about the pypy-commit mailing list