Commit 99c7e728 authored by Dmitry Safonov's avatar Dmitry Safonov Committed by Andrei Vagin

make: use aarch64 name for 64-bit ARM platform

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.
Reviewed-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarDmitry Safonov <dsafonov@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent eeb0afc4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment