Author: Armin Rigo <ar...@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, _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit