We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3ebdbf commit c73ac52Copy full SHA for c73ac52
Makefile
@@ -825,6 +825,9 @@ else
825
ifeq ($(findstring s390,$(UNAME_M)),s390)
826
DESTCPU ?= s390
827
else
828
+ifeq ($(findstring arm64,$(UNAME_M)),arm64)
829
+DESTCPU ?= arm64
830
+else
831
ifeq ($(findstring arm,$(UNAME_M)),arm)
832
DESTCPU ?= arm
833
@@ -844,6 +847,7 @@ endif
844
847
endif
845
848
846
849
850
+endif
851
ifeq ($(DESTCPU),x64)
852
ARCH=x64
853
0 commit comments