mirror of
https://github.com/junegunn/fzf
synced 2024-11-10 13:10:44 +00:00
[Makefile] Support building on machines with uname -m
== "arm64" (#2291)
This commit is contained in:
parent
f37ccaa64f
commit
797dd7c449
2
Makefile
2
Makefile
@ -47,6 +47,8 @@ else ifeq ($(UNAME_M),armv7l)
|
|||||||
BINARY := $(BINARYARM7)
|
BINARY := $(BINARYARM7)
|
||||||
else ifeq ($(UNAME_M),armv8l)
|
else ifeq ($(UNAME_M),armv8l)
|
||||||
BINARY := $(BINARYARM8)
|
BINARY := $(BINARYARM8)
|
||||||
|
else ifeq ($(UNAME_M),arm64)
|
||||||
|
BINARY := $(BINARYARM8)
|
||||||
else ifeq ($(UNAME_M),aarch64)
|
else ifeq ($(UNAME_M),aarch64)
|
||||||
BINARY := $(BINARYARM8)
|
BINARY := $(BINARYARM8)
|
||||||
else ifeq ($(UNAME_M),ppc64le)
|
else ifeq ($(UNAME_M),ppc64le)
|
||||||
|
Loading…
Reference in New Issue
Block a user