From d31ec18bf6435eeedd9dbe9966b919692d0ed3ef Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Thu, 10 Sep 2020 15:31:09 +0200 Subject: [PATCH] Remove the no-omit-frame-pointer option It's inconsequent in x86 more or less, but ARM has less registers to spare. --- cmake/SfizzConfig.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/SfizzConfig.cmake b/cmake/SfizzConfig.cmake index 02c38fc3..0e70d9e8 100644 --- a/cmake/SfizzConfig.cmake +++ b/cmake/SfizzConfig.cmake @@ -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)