You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/btor2tools/files/btor2tools-1.0.0_pre2022051...

20 lines
551 B

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -91,16 +91,6 @@ add_check_c_cxx_flag("-Wredundant-decls")
add_check_c_flag("-std=gnu99")
add_required_cxx_flag("-std=gnu++11")
-if(CMAKE_BUILD_TYPE STREQUAL "Debug")
- add_check_c_cxx_flag("-g3")
- add_check_c_cxx_flag("-ggdb")
-else()
- add_check_c_cxx_flag("-O3")
- if(NOT CHECK)
- add_check_c_cxx_flag("-DNDEBUG")
- endif()
-endif()
-
if(ASAN)
# -fsanitize=address requires CMAKE_REQUIRED_FLAGS to be explicitely set,
# otherwise the -fsanitize=address check will fail while linking.