[pypy-commit] pypy default: exclude win32

mattip pypy.commits at gmail.com
Thu Dec 21 00:22:47 EST 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r93527:0b47a415bba3
Date: 2017-12-21 07:22 +0200
http://bitbucket.org/pypy/pypy/changeset/0b47a415bba3/

Log:	exclude win32

diff --git a/rpython/rlib/rvmprof/cintf.py b/rpython/rlib/rvmprof/cintf.py
--- a/rpython/rlib/rvmprof/cintf.py
+++ b/rpython/rlib/rvmprof/cintf.py
@@ -17,6 +17,8 @@
 
 # vmprof works only on x86 for now
 IS_SUPPORTED = detect_cpu.autodetect().startswith('x86')
+if sys.platform == 'win32':
+    IS_SUPPORTED = False
 
 ROOT = py.path.local(rpythonroot).join('rpython', 'rlib', 'rvmprof')
 SRC = ROOT.join('src')


More information about the pypy-commit mailing list