Allow building on arm64 platforms

This commit is contained in:
Conor Mongey 2021-08-10 03:24:34 +01:00
parent 5f6e867685
commit a233f975c1
No known key found for this signature in database
GPG Key ID: 5C886ACC44EB17C0
1 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,8 @@ else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 5),armv8)
TARGET_ARCH ?= arm64
else ifeq ($(LOCAL_ARCH),aarch64)
TARGET_ARCH ?= arm64
else ifeq ($(LOCAL_ARCH),arm64)
TARGET_ARCH ?= arm64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
TARGET_ARCH ?= arm
else