[pypy-commit] pypy msvc-discovery: merge default into branch

mattip pypy.commits at gmail.com
Tue Nov 12 07:08:10 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: msvc-discovery
Changeset: r98033:f1ab7867eb85
Date: 2019-11-12 06:58 -0500
http://bitbucket.org/pypy/pypy/changeset/f1ab7867eb85/

Log:	merge default into branch

diff --git a/rpython/rlib/compilerinfo.py b/rpython/rlib/compilerinfo.py
--- a/rpython/rlib/compilerinfo.py
+++ b/rpython/rlib/compilerinfo.py
@@ -18,8 +18,8 @@
 
 
 if platform.name == 'msvc':
-    # XXX hard-code the MSC version, I don't feel like computing it dynamically
-    _C_COMPILER_INFO = '"MSC v." Py_STR(_MSC_VER)'
+    # XXX hard-code the bit name
+    _C_COMPILER_INFO = '"MSC v." Py_STR(_MSC_VER) " 32 bit"'
 else:
     _C_COMPILER_INFO = '("GCC " __VERSION__)'
 


More information about the pypy-commit mailing list