Skip to content

Commit 5d6de1a

Browse files
committed
setup.py - include arm64 fmod
1 parent 9475c47 commit 5d6de1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,16 @@ def make_distribution(self) -> None:
6666
"win_amd64": "x64",
6767
"win_arm64": "arm",
6868
# Linux and Mac endings
69-
"arm64": "arm", # Mac
69+
"arm64": "arm64", # Mac
7070
"x86_64": "x64",
71-
"aarch64": "arm", # Linux
71+
"aarch64": "arm64", # Linux
7272
"i686": "x86",
7373
"armv7l": "arm", # armhf
7474
}
7575

7676

7777
def get_fmod_path(
78-
system: Union["Windows", "Linux", "Darwin"], arch: ["x64", "x86", "arm"]
78+
system: Union["Windows", "Linux", "Darwin"], arch: ["x64", "x86", "arm", "arm64"]
7979
) -> str:
8080
if system == "Darwin":
8181
# universal dylib

0 commit comments

Comments
 (0)