Author: Armin Rigo <[email protected]>
Branch: shadowstack-perf-2
Changeset: r84821:aae63ff7984e
Date: 2016-05-29 20:02 +0200
http://bitbucket.org/pypy/pypy/changeset/aae63ff7984e/
Log: Remove the asmgcc rootfinder by default in this branch
diff --git a/rpython/config/translationoption.py
b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -17,10 +17,10 @@
DEFL_GC = "incminimark" # XXX
DEFL_ROOTFINDER_WITHJIT = "shadowstack"
-if sys.platform.startswith("linux"):
- _mach = os.popen('uname -m', 'r').read().strip()
- if _mach.startswith('x86') or _mach in ['i386', 'i486', 'i586', 'i686']:
- DEFL_ROOTFINDER_WITHJIT = "asmgcc" # only for Linux on x86 / x86-64
+## if sys.platform.startswith("linux"):
+## _mach = os.popen('uname -m', 'r').read().strip()
+## if _mach.startswith('x86') or _mach in ['i386', 'i486', 'i586', 'i686']:
+## DEFL_ROOTFINDER_WITHJIT = "asmgcc" # only for Linux on x86 /
x86-64
IS_64_BITS = sys.maxint > 2147483647
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit