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 010ee0b commit 21cedbfCopy full SHA for 21cedbf
setup.py
@@ -15,7 +15,7 @@
15
ROOT_DIR = os.path.dirname(__file__)
16
PLATFORM_LLVM_MAP = {
17
# (system, processor): (llvm_version, file_suffix)
18
- ("Darwin", "arm64"): ("17.0.6", "arm64-apple-darwin22.0.tar.xz"),
+ ("Darwin", "aarch64"): ("17.0.6", "arm64-apple-darwin22.0.tar.xz"),
19
("Linux", "aarch64"): ("17.0.6", "aarch64-linux-gnu.tar.xz"),
20
# ("Windows", "x86_64"): ("18.1.6", "x86_64-pc-windows-msvc.tar.xz"),
21
("Linux", "x86_64"): ("17.0.6", "x86_64-linux-gnu-ubuntu-22.04.tar.xz"),
@@ -35,6 +35,8 @@ def is_win() -> bool:
35
ARCH_MAP = {
36
"arm64": "aarch64",
37
"AMD64": "x86_64",
38
+ "ARM64": "aarch64",
39
+ "x86": "x86_64",
40
}
41
42
0 commit comments