aboutsummaryrefslogtreecommitdiff
path: root/make/defs.make
diff options
context:
space:
mode:
Diffstat (limited to 'make/defs.make')
-rw-r--r--make/defs.make6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/defs.make b/make/defs.make
index b632ded2e..0fe299806 100644
--- a/make/defs.make
+++ b/make/defs.make
@@ -246,7 +246,7 @@ ifneq ($(OSNAME),windows)
# Use uname output for SRCARCH, but deal with platform differences. If ARCH
# is not explicitly listed below, it is treated as x86.
- SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
+ SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero aarch64,$(ARCH)))
ARCH/ = x86
ARCH/sparc = sparc
ARCH/sparc64= sparc
@@ -257,6 +257,7 @@ ifneq ($(OSNAME),windows)
ARCH/ppc = ppc
ARCH/arm = arm
ARCH/zero = zero
+ ARCH/aarch64 = aarch64
# BUILDARCH is usually the same as SRCARCH, except for sparcv9
BUILDARCH = $(SRCARCH)
@@ -284,8 +285,9 @@ ifneq ($(OSNAME),windows)
LIBARCH/ppc = ppc
LIBARCH/arm = arm
LIBARCH/zero = $(ZERO_LIBARCH)
+ LIBARCH/aarch64 = amd64
- LP64_ARCH = sparcv9 amd64 ia64 zero
+ LP64_ARCH = sparcv9 amd64 ia64 zero aarch64
endif
# Required make macro settings for all platforms