diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-06-12 10:16:49 -0700 |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-06-12 10:16:49 -0700 |
commit | daf62627518ad97ce66a48c49496aa0573cf0731 (patch) | |
tree | 463690188a1d1f87ea5b9423e2fdfcab069302a2 /Lib/distutils/_msvccompiler.py | |
parent | 5287022eeeb3c017d49fc8580b52e18377bf23f3 (diff) | |
download | cpython-git-daf62627518ad97ce66a48c49496aa0573cf0731.tar.gz |
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
Diffstat (limited to 'Lib/distutils/_msvccompiler.py')
-rw-r--r-- | Lib/distutils/_msvccompiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/_msvccompiler.py b/Lib/distutils/_msvccompiler.py index c7ac3f049e..6e14f330d7 100644 --- a/Lib/distutils/_msvccompiler.py +++ b/Lib/distutils/_msvccompiler.py @@ -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 |