summarylogtreecommitdiffstats
path: root/aarch64.patch
blob: 7b5fc471dfb0d165412994ea3258946bce0664b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/arch.mk b/arch.mk
index 88b50819..70fdefd0 100644
--- a/arch.mk
+++ b/arch.mk
@@ -3,7 +3,7 @@ MACHINE := $(shell $(CC) -dumpmachine)
 ifneq (,$(findstring x86_64-,$(MACHINE)))
 	ARCH_X64 := 1
 	ARCH_CPU := x64
-else ifneq (,$(findstring arm64-,$(MACHINE)))
+else ifneq (,$(findstring arm64-,$(MACHINE))$(findstring aarch64-,$(MACHINE)))
 	ARCH_ARM64 := 1
 	ARCH_CPU := arm64
 else