Skip to content

Commit

Permalink
setup.py - include arm64 fmod
Browse files Browse the repository at this point in the history
  • Loading branch information
K0lb3 committed Nov 13, 2024
1 parent 9475c47 commit 5d6de1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ def make_distribution(self) -> None:
"win_amd64": "x64",
"win_arm64": "arm",
# Linux and Mac endings
"arm64": "arm", # Mac
"arm64": "arm64", # Mac
"x86_64": "x64",
"aarch64": "arm", # Linux
"aarch64": "arm64", # Linux
"i686": "x86",
"armv7l": "arm", # armhf
}


def get_fmod_path(
system: Union["Windows", "Linux", "Darwin"], arch: ["x64", "x86", "arm"]
system: Union["Windows", "Linux", "Darwin"], arch: ["x64", "x86", "arm", "arm64"]
) -> str:
if system == "Darwin":
# universal dylib
Expand Down

0 comments on commit 5d6de1a

Please sign in to comment.