Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7d30b80

Browse files
committed
Issue #15315: Support VS 2010 in distutils cygwincompiler.
1 parent 2b9df89 commit 7d30b80

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

Lib/distutils/cygwinccompiler.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ def get_msvcr():
7878
elif msc_ver == '1500':
7979
# VS2008 / MSVC 9.0
8080
return ['msvcr90']
81+
elif msc_ver == '1600':
82+
# VS2010 / MSVC 10.0
83+
return ['msvcr100']
8184
else:
8285
raise ValueError("Unknown MS Compiler version %s " % msc_ver)
8386

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Core and Builtins
3131
Library
3232
-------
3333

34+
- Issue #15315: Support VS 2010 in distutils cygwincompiler.
35+
3436
- Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of
3537
nested namespace packages.
3638

0 commit comments

Comments
 (0)