[CRIU] [PATCH 1/6] make: use aarch64 name for 64-bit ARM platform

Dmitry Safonov dsafonov at virtuozzo.com
Mon Apr 24 11:37:14 PDT 2017


Let's call it aarch64 across all CRIU - as I was confused at least once
with arm64 name in NMK and this arch-support check.
Yet allowed to be named arm64, as NMK patch is separated.

Signed-off-by: Dmitry Safonov <dsafonov at virtuozzo.com>
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 385a4d096835..996f06400331 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ export HOSTCFLAGS
 
 #
 # Architecture specific options.
-ifneq ($(filter-out x86 arm arm64 ppc64,$(ARCH)),)
+ifneq ($(filter-out x86 arm arm64 aarch64 ppc64,$(ARCH)),)
         $(error "The architecture $(ARCH) isn't supported")
 endif
 
@@ -35,7 +35,7 @@ ifeq ($(ARCH),arm)
         SRCARCH		:= arm
 endif
 
-ifeq ($(ARCH),arm64)
+ifneq ($(filter arm64 aarch64,$(ARCH)),)
         ARCH		:= aarch64
         SRCARCH		:= aarch64
         VDSO		:= y
-- 
2.12.2



More information about the CRIU mailing list