[pypy-commit] pypy default: By default, --sandbox should not use asmgcc.

arigo noreply at buildbot.pypy.org
Wed Feb 15 09:36:21 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r52499:60e366cf4f99
Date: 2012-02-15 09:36 +0100
http://bitbucket.org/pypy/pypy/changeset/60e366cf4f99/

Log:	By default, --sandbox should not use asmgcc.

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -105,7 +105,8 @@
     BoolOption("sandbox", "Produce a fully-sandboxed executable",
                default=False, cmdline="--sandbox",
                requires=[("translation.thread", False)],
-               suggests=[("translation.gc", "generation")]),
+               suggests=[("translation.gc", "generation"),
+                         ("translation.gcrootfinder", "shadowstack")]),
     BoolOption("rweakref", "The backend supports RPython-level weakrefs",
                default=True),
 


More information about the pypy-commit mailing list