Skip to content

Commit e2264e5

Browse files
committed
Fix MinGW-w64 segmentation fault
1 parent c2bc813 commit e2264e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

distutils/cygwinccompiler.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)