Skip to content

Commit 8fe7b5f

Browse files
authored
Merge pull request #202 from GalaxySnail/fix-mingw-w64-2
Fix MinGW-w64 segmentation fault (v2)
2 parents 2f16327 + e2264e5 commit 8fe7b5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

distutils/cygwinccompiler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# VS2013 / MSVC 12.0
4444
1800: ['msvcr120'],
4545
# VS2015 / MSVC 14.0
46-
1900: ['ucrt', 'vcruntime140'],
46+
1900: ['vcruntime140'],
4747
2000: RangeMap.undefined_value,
4848
},
4949
)

distutils/tests/test_cygwinccompiler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_get_msvcr(self):
106106
'3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 18:46:30) '
107107
'[MSC v.1929 32 bit (Intel)]'
108108
)
109-
assert get_msvcr() == ['ucrt', 'vcruntime140']
109+
assert get_msvcr() == ['vcruntime140']
110110

111111
# unknown
112112
sys.version = (

0 commit comments

Comments
 (0)