Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit