aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pypy/config/pypyoption.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
index e16c4f518c..ef0764f386 100644
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -41,7 +41,7 @@ working_modules.update([
"binascii", "_multiprocessing", '_warnings', "_collections",
"_multibytecodec", "_continuation", "_cffi_backend",
"_csv", "_pypyjson", "_posixsubprocess", "_cppyy", # "micronumpy",
- "_jitlog", # "_hpy_universal"
+ "_jitlog", "_hpy_universal"
# "_hashlib", "crypt"
])
@@ -90,7 +90,7 @@ if sys.platform == "sunos5":
if "_cppyy" in working_modules:
working_modules.remove("_cppyy") # depends on ctypes
-if sys.platform.startswith('linux') and sys.maxsize <= 2**31:
+if 1 or sys.platform.startswith('linux') and sys.maxsize <= 2**31:
# _hpy_universal needs tweaking to work on 32-bit linux
working_modules.remove('_hpy_universal')