From 3e77b3fbf163826da0b5f600415eb4b9880b9906 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 20 Oct 2021 17:06:34 +0200 Subject: [PATCH] try march=neoverse instead of mtune --- Makefile.arm64 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.arm64 b/Makefile.arm64 index 2656a17f9..de58e0fd2 100644 --- a/Makefile.arm64 +++ b/Makefile.arm64 @@ -50,9 +50,9 @@ endif ifeq ($(CORE), NEOVERSEN1) ifeq ($(GCCVERSIONGTEQ7), 1) ifeq ($(GCCVERSIONGTEQ9), 1) -CCOMMON_OPT += -march=armv8.2-a -mtune=neoverse-n1 +CCOMMON_OPT += -march=neoverse-n1 ifneq ($(F_COMPILER), NAG) -FCOMMON_OPT += -march=armv8.2-a -mtune=neoverse-n1 +FCOMMON_OPT += -march=neoverse-n1 endif else CCOMMON_OPT += -march=armv8.2-a -mtune=cortex-a72 @@ -152,4 +152,4 @@ endif endif -endif \ No newline at end of file +endif