[pypy-commit] buildbot default: Use the shadowstack root finder by default on OSX and OSX64 too.

arigo noreply at buildbot.pypy.org
Wed Aug 3 15:20:12 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r549:1353c1450f3f
Date: 2011-08-03 15:21 +0200
http://bitbucket.org/pypy/buildbot/changeset/1353c1450f3f/

Log:	Use the shadowstack root finder by default on OSX and OSX64 too.

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


More information about the pypy-commit mailing list