mirror of
https://github.com/libressl/portable.git
synced 2026-01-17 21:51:17 +01:00
cmake: disable default NDEBUG differently
Before this patch `NDEBUG` was force-disabled, preventing a build with debug asserts disabled. After this patch `NDEBUG` works again when passed as a custom build option, e.g.: `-DCMAKE_C_FLAGS=-DNDEBUG` Previously submitted as #988, which was merged, but the commit vanished from master and ended up missing from both 3.8.3 and 3.9.0 releases.
This commit is contained in:
committed by
Brent Cook
parent
cf501238f1
commit
25bf3a5522
@@ -62,8 +62,13 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
||||
STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
|
||||
endif()
|
||||
|
||||
# Enable asserts regardless of build type
|
||||
add_definitions(-UNDEBUG)
|
||||
# Do not disable assertions based on CMAKE_BUILD_TYPE
|
||||
foreach(_build_type "Release" "MinSizeRel" "RelWithDebInfo")
|
||||
foreach(_lang C CXX)
|
||||
string(TOUPPER "CMAKE_${_lang}_FLAGS_${_build_type}" _var)
|
||||
string(REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " ${_var} "${${_var}}")
|
||||
endforeach()
|
||||
endforeach()
|
||||
|
||||
set(BUILD_NC true)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user