[pypy-commit] pypy gcremovetypeptr-32bit: Add a warning in the documentation of gcremovetypeptr.

arigo noreply at buildbot.pypy.org
Wed Sep 25 17:12:56 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: gcremovetypeptr-32bit
Changeset: r67096:0561db4deed9
Date: 2013-09-25 15:12 +0000
http://bitbucket.org/pypy/pypy/changeset/0561db4deed9/

Log:	Add a warning in the documentation of gcremovetypeptr.

diff --git a/rpython/config/translationoption.py b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -76,7 +76,9 @@
                      "none": [("translation.gcrootfinder", "n/a"),
                               ("translation.gcremovetypeptr", False)],
                  }),
-    BoolOption("gcremovetypeptr", "Remove the typeptr from every object",
+    BoolOption("gcremovetypeptr",
+               "Remove the typeptr from every object. " +
+               "Note: on 32-bits this only works with gcc for now.",
                default=IS_64_BITS, cmdline="--gcremovetypeptr"),
     ChoiceOption("gcrootfinder",
                  "Strategy for finding GC Roots (framework GCs only)",


More information about the pypy-commit mailing list