Skip to content

Commit

Permalink
Merge pull request #202 from GalaxySnail/fix-mingw-w64-2
Browse files Browse the repository at this point in the history
Fix MinGW-w64 segmentation fault (v2)
  • Loading branch information
jaraco authored Feb 6, 2023
2 parents 2f16327 + e2264e5 commit 8fe7b5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distutils/cygwinccompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# VS2013 / MSVC 12.0
1800: ['msvcr120'],
# VS2015 / MSVC 14.0
1900: ['ucrt', 'vcruntime140'],
1900: ['vcruntime140'],
2000: RangeMap.undefined_value,
},
)
Expand Down
2 changes: 1 addition & 1 deletion distutils/tests/test_cygwinccompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_get_msvcr(self):
'3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 18:46:30) '
'[MSC v.1929 32 bit (Intel)]'
)
assert get_msvcr() == ['ucrt', 'vcruntime140']
assert get_msvcr() == ['vcruntime140']

# unknown
sys.version = (
Expand Down

0 comments on commit 8fe7b5f

Please sign in to comment.