Issue #15315: Support VS 2010 in distutils cygwincompiler.
This commit is contained in:
parent
2b9df89ff1
commit
7d30b80a4e
|
@ -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
|
||||||
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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue