Commit 23ee5ce6 authored by Martin v. Löwis's avatar Martin v. Löwis

Issue #15315: Support VS 2010 in distutils cygwincompiler.

parent 334e780c
...@@ -78,6 +78,9 @@ def get_msvcr(): ...@@ -78,6 +78,9 @@ def get_msvcr():
elif msc_ver == '1500': elif msc_ver == '1500':
# VS2008 / MSVC 9.0 # VS2008 / MSVC 9.0
return ['msvcr90'] return ['msvcr90']
elif msc_ver == '1600':
# VS2010 / MSVC 10.0
return ['msvcr100']
else: else:
raise ValueError("Unknown MS Compiler version %s " % msc_ver) raise ValueError("Unknown MS Compiler version %s " % msc_ver)
......
...@@ -31,6 +31,8 @@ Core and Builtins ...@@ -31,6 +31,8 @@ Core and Builtins
Library Library
------- -------
- Issue #15315: Support VS 2010 in distutils cygwincompiler.
- Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of - Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of
nested namespace packages. nested namespace packages.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment