mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 23:34:57 -04:00
makepanda: Locate aarch64 thirdparty packages on Linux/FreeBSD
[skip ci]
This commit is contained in:
parent
08f344b00c
commit
059361c87c
@ -1342,6 +1342,8 @@ def GetThirdpartyDir():
|
||||
THIRDPARTYDIR = base + "/linux-libs-arm/"
|
||||
elif (target_arch in ("x86_64", "amd64")):
|
||||
THIRDPARTYDIR = base + "/linux-libs-x64/"
|
||||
elif target_arch == "aarch64":
|
||||
THIRDPARTYDIR = base + "/linux-libs-aarch64/"
|
||||
else:
|
||||
THIRDPARTYDIR = base + "/linux-libs-a/"
|
||||
|
||||
@ -1350,6 +1352,8 @@ def GetThirdpartyDir():
|
||||
THIRDPARTYDIR = base + "/freebsd-libs-arm/"
|
||||
elif (target_arch in ("x86_64", "amd64")):
|
||||
THIRDPARTYDIR = base + "/freebsd-libs-x64/"
|
||||
elif target_arch == "aarch64":
|
||||
THIRDPARTYDIR = base + "/freebsd-libs-aarch64/"
|
||||
else:
|
||||
THIRDPARTYDIR = base + "/freebsd-libs-a/"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user