From afbfdf9ba5ff6b8318f5330a22cbc040ecaabe33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20=C3=96hman?= Date: Thu, 31 Oct 2024 16:17:42 +0100 Subject: [PATCH] Fix order of flags --- test/framework/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/framework/toolchain.py b/test/framework/toolchain.py index 356f8f3993..a914c59b9d 100644 --- a/test/framework/toolchain.py +++ b/test/framework/toolchain.py @@ -2194,7 +2194,7 @@ def test_independence(self): tc_cflags = { 'CrayCCE': "-O2 -g -homp -craype-verbose", - 'CrayGNU': "-O2 -g -fno-math-errno -fopenmp -craype-verbose", + 'CrayGNU': "-O2 -fno-math-errno -g -fopenmp -craype-verbose", 'CrayIntel': "-O2 -g -ftz -fp-speculation=safe -fp-model source -fopenmp -craype-verbose", 'GCC': "-O2 -g -ftree-vectorize -test -fno-math-errno -fopenmp", 'iccifort': "-O2 -g -test -ftz -fp-speculation=safe -fp-model source -fopenmp",