Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9df89 commit 7d30b80Copy full SHA for 7d30b80
2 files changed
Lib/distutils/cygwinccompiler.py
@@ -78,6 +78,9 @@ def get_msvcr():
78
elif msc_ver == '1500':
79
# VS2008 / MSVC 9.0
80
return ['msvcr90']
81
+ elif msc_ver == '1600':
82
+ # VS2010 / MSVC 10.0
83
+ return ['msvcr100']
84
else:
85
raise ValueError("Unknown MS Compiler version %s " % msc_ver)
86
Misc/NEWS
@@ -31,6 +31,8 @@ Core and Builtins
31
Library
32
-------
33
34
+- Issue #15315: Support VS 2010 in distutils cygwincompiler.
35
+
36
- Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of
37
nested namespace packages.
38
0 commit comments