From 92ee39484b0b07ceb1c18c6e4362e6dc39de5263 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Thu, 20 Jul 2023 07:09:26 +0000 Subject: [PATCH] tests: fix hpcg builds with arm1 compiler Signed-off-by: Adrian Reber --- tests/apps/hpcg/setup/Make.ohpc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/apps/hpcg/setup/Make.ohpc b/tests/apps/hpcg/setup/Make.ohpc index 64276d8077..f51420685a 100644 --- a/tests/apps/hpcg/setup/Make.ohpc +++ b/tests/apps/hpcg/setup/Make.ohpc @@ -120,6 +120,8 @@ CXX = mpicxx ifeq ($(LMOD_FAMILY_COMPILER),intel) CXXFLAGS = $(HPCG_DEFS) -O3 -qopenmp +else ifeq ($(LMOD_FAMILY_COMPILER),acfl) +CXXFLAGS = $(HPCG_DEFS) -O3 -fsimdmath -fopenmp else CXXFLAGS = $(HPCG_DEFS) -O3 -ffast-math -ftree-vectorize -ftree-vectorizer-verbose=0 -fopenmp endif