Removed unused profiling flags that cause failed builds on alpine linux
This commit is contained in:
parent
0c8a95cb2e
commit
2290958cce
1 changed files with 2 additions and 2 deletions
|
@ -14,10 +14,10 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|||
endif()
|
||||
|
||||
set(CMAKE_C_FLAGS "-Wall -Werror -Wextra -pedantic")
|
||||
set(CMAKE_C_FLAGS_DEBUG "-O0 -ggdb3 -pg -fsanitize=address")
|
||||
set(CMAKE_C_FLAGS_DEBUG "-O0 -ggdb3 -fsanitize=address")
|
||||
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
||||
set(CMAKE_C_FLAGS_MinSizeRel "-Os")
|
||||
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 -ggdb3 -pg")
|
||||
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 -ggdb3")
|
||||
|
||||
option(LIBSSH_VERBOSE_OUTPUT "whether or not verbose output for libssh mode is activated" OFF)
|
||||
option(SESSION_RECORDING "whether or not recording feature based on lib termrec is activated" ON)
|
||||
|
|
Reference in a new issue