Archived
1
0
Fork 0

Removed unused profiling flags that cause failed builds on alpine linux

This commit is contained in:
Julien Dessaux 2019-04-04 11:34:36 +02:00
parent 0c8a95cb2e
commit 2290958cce

View file

@ -14,10 +14,10 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
endif() endif()
set(CMAKE_C_FLAGS "-Wall -Werror -Wextra -pedantic") 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_RELEASE "-O2")
set(CMAKE_C_FLAGS_MinSizeRel "-Os") 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(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) option(SESSION_RECORDING "whether or not recording feature based on lib termrec is activated" ON)