m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-08 11:23:47 -05:00

Update Makefile to support armv8l (#1321)

This commit is contained in:
做梦专业户
2018-06-27 17:56:02 +08:00
committed by Junegunn Choi
parent 0edbcbdf19
commit e67cc75063

View File

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