[pypy-commit] pypy windows-vmprof-support: vmprof works on most supported platforms

fijal pypy.commits at gmail.com
Fri Feb 12 09:44:38 EST 2016


Author: fijal
Branch: windows-vmprof-support
Changeset: r82179:dd2e39de0ed3
Date: 2016-02-12 15:43 +0100
http://bitbucket.org/pypy/pypy/changeset/dd2e39de0ed3/

Log:	vmprof works on most supported platforms

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -36,13 +36,13 @@
     "cStringIO", "thread", "itertools", "pyexpat", "_ssl", "cpyext", "array",
     "binascii", "_multiprocessing", '_warnings', "_collections",
     "_multibytecodec", "micronumpy", "_continuation", "_cffi_backend",
-    "_csv", "cppyy", "_pypyjson"
+    "_csv", "cppyy", "_pypyjson", "_vmprof",
 ])
 
-if ((sys.platform.startswith('linux') or sys.platform == 'darwin')
-    and os.uname()[4] == 'x86_64' and sys.maxint > 2**32):
+#if ((sys.platform.startswith('linux') or sys.platform == 'darwin')
+#    and os.uname()[4] == 'x86_64' and sys.maxint > 2**32):
     # it's not enough that we get x86_64
-    working_modules.add('_vmprof')
+#    working_modules.add('_vmprof')
 
 translation_modules = default_modules.copy()
 translation_modules.update([


More information about the pypy-commit mailing list