Commit 67b602fe authored by Simon Giesecke's avatar Simon Giesecke

Problem: unused variable warnings for values only used in asserts

Solution: use a Debug build for analysis
parent 3cb47546
...@@ -51,6 +51,7 @@ CMAKE_PREFIXES=() ...@@ -51,6 +51,7 @@ CMAKE_PREFIXES=()
MAKE_PREFIXES=() MAKE_PREFIXES=()
PARALLEL_MAKE_OPT="-j5" PARALLEL_MAKE_OPT="-j5"
if [ -n "$CLANG_TIDY" ] ; then if [ -n "$CLANG_TIDY" ] ; then
CMAKE_OPTS+=("-DCMAKE_BUILD_TYPE=Debug") # do a debug build to avoid unused variable warnings with assertions, and to speed up build
CMAKE_OPTS+=("-DCMAKE_CXX_CLANG_TIDY:STRING=${CLANG_TIDY}") CMAKE_OPTS+=("-DCMAKE_CXX_CLANG_TIDY:STRING=${CLANG_TIDY}")
if [ -n ${SONARCLOUD_BUILD_WRAPPER_PATH} ] ; then if [ -n ${SONARCLOUD_BUILD_WRAPPER_PATH} ] ; then
MAKE_PREFIXES+=("${SONARCLOUD_BUILD_WRAPPER_PATH}build-wrapper-linux-x86-64") MAKE_PREFIXES+=("${SONARCLOUD_BUILD_WRAPPER_PATH}build-wrapper-linux-x86-64")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment