X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=CMake%2FCheckDebug.cmake;h=e3e046bf8c7be78accb56c79c458c294f4d84bbf;hb=ca5b36c524c7b4ecdb436c2e20a8a0b089be127a;hp=2c873d86959b4530840b7f27dbe6b2263104e0ff;hpb=de6f641f28758fdbc7890735370adc961a34dc1d;p=awesomized%2Flibmemcached diff --git a/CMake/CheckDebug.cmake b/CMake/CheckDebug.cmake index 2c873d86..e3e046bf 100644 --- a/CMake/CheckDebug.cmake +++ b/CMake/CheckDebug.cmake @@ -14,56 +14,61 @@ endfunction() function(check_debug) if(CMAKE_BUILD_TYPE STREQUAL "Debug") - check_flag(-Og -O0) - check_flag(-ggdb -g) add_definitions(-DDEBUG=1) - foreach(FLAG IN ITEMS - -fno-inline - -fno-omit-frame-pointer - -fno-eliminate-unused-debug-types - -funsafe-loop-optimizations + if(CMAKE_CXX_FLAGS MATCHES --coverage) + message("-- Coverage build detected!") + message("-- Skipping debug and sanitizer flag checks.") + else() + check_flag(-Og -O0) + check_flag(-ggdb -g) + foreach(FLAG IN ITEMS + -fno-inline + -fno-omit-frame-pointer + -fno-eliminate-unused-debug-types + -funsafe-loop-optimizations - -Wall - -Wextra + -Wall + -Wextra - -Wdouble-promotion - -Wduplicated-cond - -Wduplicated-branches - -Wformat=2 - -Wlogical-op - -Wnull-dereference - -Wrestrict - -Wshadow - -Wunknown-pragmas - -Wunsafe-loop-optimizations - ) - check_flag(${FLAG} IGNORE) - endforeach() + -Wdouble-promotion + -Wduplicated-cond + -Wduplicated-branches + -Wformat=2 + -Wlogical-op + -Wnull-dereference + -Wrestrict + -Wshadow + -Wunknown-pragmas + -Wunsafe-loop-optimizations + ) + check_flag(${FLAG} IGNORE) + endforeach() - if(ENABLE_SANITIZERS) - if(address IN_LIST ENABLE_SANITIZERS OR asan IN_LIST ENABLE_SANITIZERS) - cmake_push_check_state(RESET) - set(CMAKE_REQUIRED_LIBRARIES asan) - check_cxx_compiler_flag(-fsanitize=address HAVE_ASAN) - cmake_pop_check_state() - if(HAVE_ASAN) - add_compile_definitions(HAVE_ASAN) - add_compile_options(-fsanitize=address) - link_libraries(asan) - check_flag(-fsanitize-recover=address IGNORE) + if(ENABLE_SANITIZERS) + if(address IN_LIST ENABLE_SANITIZERS OR asan IN_LIST ENABLE_SANITIZERS) + cmake_push_check_state(RESET) + set(CMAKE_REQUIRED_LIBRARIES asan) + check_cxx_compiler_flag(-fsanitize=address HAVE_ASAN) + cmake_pop_check_state() + if(HAVE_ASAN) + add_compile_definitions(HAVE_ASAN) + add_compile_options(-fsanitize=address) + link_libraries(-fsanitize=address) + check_flag(-fsanitize-recover=address IGNORE) + endif() endif() - endif() - if(undefined IN_LIST ENABLE_SANITIZERS OR ubsan IN_LIST ENABLE_SANITIZERS) - cmake_push_check_state(RESET) - set(CMAKE_REQUIRED_LIBRARIES ubsan) - check_cxx_compiler_flag(-fsanitize=undefined HAVE_UBSAN) - cmake_pop_check_state() - if(HAVE_UBSAN) - add_compile_definitions(HAVE_UBSAN) - add_compile_options(-fsanitize=undefined) - link_libraries(ubsan) - check_flag(-fsanitize-recover=undefined IGNORE) + if(undefined IN_LIST ENABLE_SANITIZERS OR ubsan IN_LIST ENABLE_SANITIZERS) + cmake_push_check_state(RESET) + set(CMAKE_REQUIRED_LIBRARIES ubsan) + check_cxx_compiler_flag(-fsanitize=undefined HAVE_UBSAN) + cmake_pop_check_state() + if(HAVE_UBSAN) + add_compile_definitions(HAVE_UBSAN) + add_compile_options(-fsanitize=undefined) + link_libraries(-fsanitize=undefined) + check_flag(-fsanitize-recover=undefined IGNORE) + endif() endif() endif() endif()