Author: Armin Rigo <[email protected]>
Branch: gcremovetypeptr-32bit
Changeset: r67098:1ede42f90b53
Date: 2013-09-25 16:11 +0000
http://bitbucket.org/pypy/pypy/changeset/1ede42f90b53/

Log:    Hack to enable gcremovetypeptr always

diff --git a/rpython/config/translationoption.py 
b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -79,7 +79,8 @@
     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"),
+               default=True,  #IS_64_BITS, --- XXX temporary!
+               cmdline="--gcremovetypeptr"),
     ChoiceOption("gcrootfinder",
                  "Strategy for finding GC Roots (framework GCs only)",
                  ["n/a", "shadowstack", "asmgcc"],
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to