diff options
| author | GalaxySnail <me@glxys.nl> | 2022-12-24 16:28:15 +0800 |
|---|---|---|
| committer | GalaxySnail <me@glxys.nl> | 2022-12-24 16:28:15 +0800 |
| commit | 3e804f4d98ec83aa62c35d0b9323b2c3c2ca41fd (patch) | |
| tree | 1c0183dafa7db436c8f19a4b0524088ffb4777e0 | |
| parent | 3e9d47e0f631a92cc0251ac212a14cad9570f76b (diff) | |
| download | python-setuptools-git-3e804f4d98ec83aa62c35d0b9323b2c3c2ca41fd.tar.gz | |
Fix MinGW-w64 segmentation fault
| -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 f15b8eee..4c9ac0ca 100644 --- a/distutils/cygwinccompiler.py +++ b/distutils/cygwinccompiler.py @@ -43,7 +43,7 @@ _msvcr_lookup = RangeMap.left( # VS2013 / MSVC 12.0 1800: ['msvcr120'], # VS2015 / MSVC 14.0 - 1900: ['ucrt', 'vcruntime140'], + 1900: ['vcruntime140'], 2000: RangeMap.undefined_value, }, ) |
