[pypy-commit] pypy miniscan: Add the option.

arigo noreply at buildbot.pypy.org
Tue Feb 28 14:09:36 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: miniscan
Changeset: r52976:1407952bc3f8
Date: 2012-02-28 14:04 +0100
http://bitbucket.org/pypy/pypy/changeset/1407952bc3f8/

Log:	Add the option.

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -90,13 +90,14 @@
                default=IS_64_BITS, cmdline="--gcremovetypeptr"),
     ChoiceOption("gcrootfinder",
                  "Strategy for finding GC Roots (framework GCs only)",
-                 ["n/a", "shadowstack", "asmgcc"],
+                 ["n/a", "shadowstack", "asmgcc", "scan"],
                  "shadowstack",
                  cmdline="--gcrootfinder",
                  requires={
                      "shadowstack": [("translation.gctransformer", "framework")],
                      "asmgcc": [("translation.gctransformer", "framework"),
                                 ("translation.backend", "c")],
+                     "scan": [("translation.gctransformer", "framework")],
                     }),
 
     # other noticeable options


More information about the pypy-commit mailing list