diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-06 12:59:31 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-06 12:59:31 -0500 |
| commit | 0171aee1bc0e5811d710e6d9253ec80556817095 (patch) | |
| tree | b03d5d1234e0b11784d4838c28ad0b9abcf9772e | |
| parent | fb2a173bcd783040a36ca20c41b967f0673c56a3 (diff) | |
| parent | 3e804f4d98ec83aa62c35d0b9323b2c3c2ca41fd (diff) | |
| download | python-setuptools-git-0171aee1bc0e5811d710e6d9253ec80556817095.tar.gz | |
Merge pull request #197 from GalaxySnail/fix-mingw-w64
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 6230bdc4..d3905804 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, }, ) |
