summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
334caf4)
This is available since gcc-4.9.
-Wswitch-enum
-Wundef
-Wunreachable-code
-Wswitch-enum
-Wundef
-Wunreachable-code
- -Wwrite-strings
- -fstack-protector)
+ -Wwrite-strings)
+
+ include(CheckCCompilerFlag)
+ CHECK_C_COMPILER_FLAG(-fstack-protector-strong COMPILER_SUPPORTS_STACK_PROTECTOR_STRONG)
+ if (COMPILER_SUPPORTS_STACK_PROTECTOR_STRONG)
+ add_flags(CMAKE_C_FLAGS -fstack-protector-strong)
+ else()
+ add_flags(CMAKE_C_FLAGS -fstack-protector)
+ endif()
add_flags(DEBUG_FLAGS
-ggdb)
add_flags(DEBUG_FLAGS
-ggdb)