Remove the no-omit-frame-pointer option

It's inconsequent in x86 more or less, but ARM has less registers to spare.
This commit is contained in:
Paul Ferrand 2020-09-10 15:31:09 +02:00
parent afadb171a4
commit d31ec18bf6

View file

@ -57,7 +57,6 @@ endif()
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
add_compile_options(-Wall)
add_compile_options(-Wextra)
add_compile_options(-fno-omit-frame-pointer) # For debugging purposes
add_compile_options(-Werror=return-type)
if (SFIZZ_SYSTEM_PROCESSOR MATCHES "^(i.86|x86_64)$")
add_compile_options(-msse2)