diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2012-07-10 07:07:06 +0200 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2012-07-10 07:07:06 +0200 |
| commit | b44cc1ee01fc6742048240e9a2e19a16d3ce41aa (patch) | |
| tree | f836d75a12d19b8eb85bee8bacca4ab16df11261 | |
| parent | f1f3ff37a4e88ffa90c3821bfc18db2009e1ed3b (diff) | |
| download | python-setuptools-git-b44cc1ee01fc6742048240e9a2e19a16d3ce41aa.tar.gz | |
Issue #15315: Support VS 2010 in distutils cygwincompiler.
| -rw-r--r-- | cygwinccompiler.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cygwinccompiler.py b/cygwinccompiler.py index 819e1a97..0bdd539c 100644 --- a/cygwinccompiler.py +++ b/cygwinccompiler.py @@ -78,6 +78,9 @@ def get_msvcr(): elif msc_ver == '1500': # VS2008 / MSVC 9.0 return ['msvcr90'] + elif msc_ver == '1600': + # VS2010 / MSVC 10.0 + return ['msvcr100'] else: raise ValueError("Unknown MS Compiler version %s " % msc_ver) |
