From ca3b5ae3f0b20461db41d97b52fb3c8ecfcb569b Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 25 Dec 2022 12:19:20 +0100 Subject: [PATCH] Pass NO_SVE if set --- Makefile.system | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.system b/Makefile.system index ae62873f5..ccae33ca2 100644 --- a/Makefile.system +++ b/Makefile.system @@ -664,7 +664,7 @@ DYNAMIC_CORE += CORTEXA57 DYNAMIC_CORE += CORTEXA72 DYNAMIC_CORE += CORTEXA73 DYNAMIC_CORE += NEOVERSEN1 -ifeq ($(GCCVERSIONGTEQ10), 1) +ifneq ($(NO_SVE), 1) DYNAMIC_CORE += NEOVERSEV1 DYNAMIC_CORE += NEOVERSEN2 endif @@ -1384,6 +1384,10 @@ ifeq ($(NO_AVX512), 1) CCOMMON_OPT += -DNO_AVX512 endif +ifeq ($(NO_SVE), 1) +CCOMMON_OPT += -DNO_SVE +endif + ifdef SMP CCOMMON_OPT += -DSMP_SERVER