diff options
author | Steve Dower <steve.dower@microsoft.com> | 2021-07-09 23:35:06 +0100 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-14 22:06:09 -0400 |
commit | f15f814e9e82c2343280e8f62360f12b3023eb5f (patch) | |
tree | 0e7ed8eff2880080df306dbbdb78b80e9b9ef8c7 | |
parent | e2627b7327f6dc09946eeac897113178f88ece6c (diff) | |
download | python-setuptools-git-f15f814e9e82c2343280e8f62360f12b3023eb5f.tar.gz |
Adds detection of Windows ARM64 build environments for cross-compilation.
Closes #2724
-rw-r--r-- | distutils/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distutils/util.py b/distutils/util.py index 76657d2e..4232fd21 100644 --- a/distutils/util.py +++ b/distutils/util.py @@ -103,6 +103,7 @@ def get_platform(): 'x86' : 'win32', 'x64' : 'win-amd64', 'arm' : 'win-arm32', + 'arm64': 'win-arm64', } return TARGET_TO_PLAT.get(os.environ.get('VSCMD_ARG_TGT_ARCH')) or get_host_platform() else: |