From a233f975c118ca8b48424e8098aaf991f13b90a1 Mon Sep 17 00:00:00 2001 From: Conor Mongey Date: Tue, 10 Aug 2021 03:24:34 +0100 Subject: [PATCH] Allow building on arm64 platforms --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8a589d85..71cd06a8 100644 --- a/Makefile +++ b/Makefile @@ -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