From e67cc75063d0a1a2e7aa6090a3d9845d517ed5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=81=9A=E6=A2=A6=E4=B8=93=E4=B8=9A=E6=88=B7?= Date: Wed, 27 Jun 2018 17:56:02 +0800 Subject: [PATCH] Update Makefile to support armv8l (#1321) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 95d91d14..05ec3038 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,8 @@ else ifeq ($(UNAME_M),armv6l) BINARY := $(BINARYARM6) else ifeq ($(UNAME_M),armv7l) BINARY := $(BINARYARM7) +else ifeq ($(UNAME_M),armv8l) + BINARY := $(BINARYARM8) else $(error "Build on $(UNAME_M) is not supported, yet.") endif