cmake: don't optimize debug build

This commit is contained in:
selsta 2021-10-04 02:20:08 +02:00
parent 6b824c9ed0
commit 9cd7aa60f0
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 0 additions and 5 deletions

View File

@ -996,11 +996,6 @@ else()
endif()
set(DEBUG_FLAGS "-g3")
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT (CMAKE_C_COMPILER_VERSION VERSION_LESS 4.8))
set(DEBUG_FLAGS "${DEBUG_FLAGS} -Og ")
else()
set(DEBUG_FLAGS "${DEBUG_FLAGS} -O0 ")
endif()
# At least some CLANGs default to not enough for monero
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftemplate-depth=900")