[pypy-commit] pypy py3.5-msvc14: prefer msvc14

mattip pypy.commits at gmail.com
Sat Feb 10 19:01:53 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5-msvc14
Changeset: r93797:c16af036eb3c
Date: 2018-02-10 19:01 -0500
http://bitbucket.org/pypy/pypy/changeset/c16af036eb3c/

Log:	prefer msvc14

diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -29,8 +29,9 @@
     return None
 
 def Windows(cc=None, ver0=None):
-    if ver0 is None:
-        ver0 = _get_vcver0()
+    # disallow getting currently used compiler
+    #if ver0 is None:
+    #    ver0 = _get_vcver0()
     return _get_compiler_type(cc, False, ver0=ver0)
 
 def Windows_x64(cc=None, ver0=None):


More information about the pypy-commit mailing list