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

[Makefile] Support building on machines with uname -m == "arm64" (#2291)

This commit is contained in:
Loic Nageleisen
2020-12-23 06:27:46 +01:00
committed by GitHub
parent f37ccaa64f
commit 797dd7c449

View File

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