From e22a7cea713eeeb8f2d82e631c95bd03b34f4ca0 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Wed, 6 Mar 2024 14:13:14 +0100 Subject: [PATCH] Remove ineffective debug flags for CI scripts Our cmake configuration also defines -O and -g flags and those take precedence as appear later on the compiler's command line. --- scripts/ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci.sh b/scripts/ci.sh index 1d86b8799..a6785d478 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -31,7 +31,7 @@ doxygen # Build cmake -S . -B build -G Ninja \ -DCMAKE_CXX_CLANG_TIDY=clang-tidy \ - -DCMAKE_CXX_FLAGS="--coverage -g -O0" \ + -DCMAKE_CXX_FLAGS="--coverage" \ -DINTRINSICCV_ENABLE_SVE2=ON \ -DINTRINSICCV_ENABLE_SVE2_SELECTIVELY=OFF \ -DINTRINSICCV_CHECK_BANNED_FUNCTIONS=ON -- GitLab