Support building on machines with uname -m == "aarch64" (#1710)

This commit is contained in:
stiletto 2019-10-11 16:11:06 +03:00 committed by Junegunn Choi
parent 3089880f18
commit f1520bdde6

View File

@ -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