diff options
author | 谭九鼎 <109224573@qq.com> | 2021-05-18 20:14:14 +0800 |
---|---|---|
committer | imba-tjd <109224573@qq.com> | 2021-11-15 18:01:10 +0800 |
commit | eca30e8e9ac046312b90e1541166433e3ed9084c (patch) | |
tree | 0c821ae2a2800e7144a28045713982e6181b74c2 | |
parent | ea88dcdaeaef9a6bfd8edc04a2e3df713222d185 (diff) | |
download | python-setuptools-git-eca30e8e9ac046312b90e1541166433e3ed9084c.tar.gz |
Update cygwinccompiler.py
-rw-r--r-- | distutils/cygwinccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils/cygwinccompiler.py b/distutils/cygwinccompiler.py index 4897352c..8288b8c8 100644 --- a/distutils/cygwinccompiler.py +++ b/distutils/cygwinccompiler.py @@ -90,7 +90,7 @@ def get_msvcr(): return ['msvcr120'] elif int(msc_ver) >= 1900 and int(msc_ver) < 2000: # VS2015 / MSVC 14.0 - return ['vcruntime140'] + return ['ucrt', 'vcruntime140'] else: raise ValueError("Unknown MS Compiler version %s " % msc_ver) |