We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3897417 + c79a038 commit 9487d9cCopy full SHA for 9487d9c
changelog.d/2724.change.rst
@@ -0,0 +1 @@
1
+Added detection of Windows ARM64 build environments using the ``VSCMD_ARG_TGT_ARCH`` environment variable.
setuptools/_distutils/util.py
@@ -103,6 +103,7 @@ def get_platform():
103
'x86' : 'win32',
104
'x64' : 'win-amd64',
105
'arm' : 'win-arm32',
106
+ 'arm64': 'win-arm64',
107
}
108
return TARGET_TO_PLAT.get(os.environ.get('VSCMD_ARG_TGT_ARCH')) or get_host_platform()
109
else:
0 commit comments