summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoic Nageleisen <loic.nageleisen@gmail.com>2020-12-23 06:27:46 +0100
committerGitHub <noreply@github.com>2020-12-23 14:27:46 +0900
commit797dd7c44933417f38ff81f69b9109386a0bf617 (patch)
treee546ef431a0239d6b63c97472f69ed58982da85e
parentf37ccaa64f65a2b36e9b82fc946318d60b0c6acc (diff)
[Makefile] Support building on machines with `uname -m` == "arm64" (#2291)
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 39c04746..f92e73ed 100644
--- a/Makefile
+++ b/Makefile
@@ -47,6 +47,8 @@ else ifeq ($(UNAME_M),armv7l)
BINARY := $(BINARYARM7)
else ifeq ($(UNAME_M),armv8l)
BINARY := $(BINARYARM8)
+else ifeq ($(UNAME_M),arm64)
+ BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),aarch64)
BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),ppc64le)