summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2023-02-06 12:59:31 -0500
committerGitHub <noreply@github.com>2023-02-06 12:59:31 -0500
commit0171aee1bc0e5811d710e6d9253ec80556817095 (patch)
treeb03d5d1234e0b11784d4838c28ad0b9abcf9772e
parentfb2a173bcd783040a36ca20c41b967f0673c56a3 (diff)
parent3e804f4d98ec83aa62c35d0b9323b2c3c2ca41fd (diff)
downloadpython-setuptools-git-0171aee1bc0e5811d710e6d9253ec80556817095.tar.gz
Merge pull request #197 from GalaxySnail/fix-mingw-w64
Fix MinGW-w64 segmentation fault
-rw-r--r--distutils/cygwinccompiler.py2
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,
},
)