Author: Armin Rigo <ar...@tunes.org> Branch: release-1.6.x Changeset: r46247:25352f1b15b0 Date: 2011-08-03 17:33 +0200 http://bitbucket.org/pypy/pypy/changeset/25352f1b15b0/
Log: hg merge default diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py --- a/pypy/config/translationoption.py +++ b/pypy/config/translationoption.py @@ -13,6 +13,10 @@ DEFL_LOW_INLINE_THRESHOLD = DEFL_INLINE_THRESHOLD / 2.0 DEFL_GC = "minimark" +if sys.platform.startswith("linux"): + DEFL_ROOTFINDER_WITHJIT = "asmgcc" +else: + DEFL_ROOTFINDER_WITHJIT = "shadowstack" IS_64_BITS = sys.maxint > 2147483647 @@ -109,7 +113,7 @@ BoolOption("jit", "generate a JIT", default=False, suggests=[("translation.gc", DEFL_GC), - ("translation.gcrootfinder", "asmgcc"), + ("translation.gcrootfinder", DEFL_ROOTFINDER_WITHJIT), ("translation.list_comprehension_operations", True)]), ChoiceOption("jit_backend", "choose the backend for the JIT", ["auto", "x86", "x86-without-sse2", "llvm"], _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit