mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
This commit is contained in:
parent
5287022eee
commit
daf6262751
5 changed files with 13 additions and 3 deletions
|
@ -93,6 +93,7 @@ PLAT_SPEC_TO_RUNTIME = {
|
|||
'x86' : 'x86',
|
||||
'x86_amd64' : 'x64',
|
||||
'x86_arm' : 'arm',
|
||||
'x86_arm64' : 'arm64'
|
||||
}
|
||||
|
||||
def _find_vcvarsall(plat_spec):
|
||||
|
@ -190,6 +191,7 @@ PLAT_TO_VCVARS = {
|
|||
'win32' : 'x86',
|
||||
'win-amd64' : 'x86_amd64',
|
||||
'win-arm32' : 'x86_arm',
|
||||
'win-arm64' : 'x86_arm64'
|
||||
}
|
||||
|
||||
# A set containing the DLLs that are guaranteed to be available for
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue