summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorstiletto <blasux@blasux.ru>2019-10-11 16:11:06 +0300
committerJunegunn Choi <junegunn.c@gmail.com>2019-10-11 22:11:06 +0900
commitf1520bdde6c268cf3c77a70574b35019de3bcdd0 (patch)
tree28134114dbafaebdcdb1b7b14f1e7b20602b5be0 /Makefile
parent3089880f18b2a0b5663554876468de6c8f17eb8c (diff)
downloadfzf-f1520bdde6c268cf3c77a70574b35019de3bcdd0.tar.gz
Support building on machines with `uname -m` == "aarch64" (#1710)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b5ab5299..037b19bb 100644
--- a/Makefile
+++ b/Makefile
@@ -42,6 +42,8 @@ else ifeq ($(UNAME_M),armv7l)
BINARY := $(BINARYARM7)
else ifeq ($(UNAME_M),armv8l)
BINARY := $(BINARYARM8)
+else ifeq ($(UNAME_M),aarch64)
+ BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),ppc64le)
BINARY := $(BINARYPPC64LE)
else