Use -Og for debug builds
This commit is contained in:
parent
a7a286371a
commit
b341514a22
|
@ -20,6 +20,10 @@ else()
|
||||||
option(ENABLE_LTO "Enable link-time optimization" OFF)
|
option(ENABLE_LTO "Enable link-time optimization" OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (CMAKE_BUILD_TYPE STREQUAL Debug)
|
||||||
|
add_compile_options(-Og)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(ENABLE_LTO)
|
if(ENABLE_LTO)
|
||||||
add_compile_options(-O3 -flto)
|
add_compile_options(-O3 -flto)
|
||||||
add_link_options(-flto)
|
add_link_options(-flto)
|
||||||
|
|
Loading…
Reference in New Issue