From 5dfc32d1b501265c75ed9ec6f93032805833c19e Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 22 Jun 2022 23:56:16 +0200 Subject: [PATCH] Disable AFFINITY for arm64 hosts in cross-builds from x86_64 --- Makefile.system | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.system b/Makefile.system index b1593e8f5..7a557e864 100644 --- a/Makefile.system +++ b/Makefile.system @@ -1463,6 +1463,9 @@ ifneq ($(ARCH), x86) NO_AFFINITY = 1 endif endif +ifdef ARMV8 +NO_AFFINITY = 1 +endif ifdef NO_AFFINITY ifeq ($(NO_AFFINITY), 0)