makepanda: Locate aarch64 thirdparty packages on Linux/FreeBSD

[skip ci]
This commit is contained in:
rdb 2021-02-16 11:49:53 +01:00
parent 08f344b00c
commit 059361c87c

View File

@ -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/"