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.
1 parent d778f49 commit 7486c5cCopy full SHA for 7486c5c
test/clang_native.py
@@ -25,7 +25,8 @@ def get_native_triple():
25
26
arch = {
27
'aarch64': 'arm64',
28
- 'arm64': 'arm64',
+ 'arm64': 'arm64', # Python on Apple Silicon ARM64 reports lowercase arm64
29
+ 'ARM64': 'arm64', # Python on Windows-on-ARM reports uppercase ARM64
30
'x86_64': 'x86_64',
31
'AMD64': 'x86_64',
32
}[platform.machine()]
0 commit comments