tests/echo_srv: make the main server logic resilient to ECONNABORTED from accept()
[socket_wrapper.git] / CompilerChecks.cmake
1 include(AddCCompilerFlag)
2 include(CheckCCompilerFlagSSP)
3
4 if (UNIX)
5     #
6     # Check for -Werror turned on if possible
7     #
8     # This will prevent that compiler flags are detected incorrectly.
9     #
10     check_c_compiler_flag("-Werror" REQUIRED_FLAGS_WERROR)
11     if (REQUIRED_FLAGS_WERROR)
12         set(CMAKE_REQUIRED_FLAGS "-Werror")
13
14         if (PICKY_DEVELOPER)
15             list(APPEND SUPPORTED_COMPILER_FLAGS "-Werror")
16         endif()
17     endif()
18
19     add_c_compiler_flag("-std=gnu99" SUPPORTED_COMPILER_FLAGS)
20     #add_c_compiler_flag("-Wpedantic" SUPPORTED_COMPILER_FLAGS)
21     add_c_compiler_flag("-Wall" SUPPORTED_COMPILER_FLAGS)
22     add_c_compiler_flag("-Wshadow" SUPPORTED_COMPILER_FLAGS)
23     add_c_compiler_flag("-Wmissing-prototypes" SUPPORTED_COMPILER_FLAGS)
24     add_c_compiler_flag("-Wcast-align" SUPPORTED_COMPILER_FLAGS)
25     #add_c_compiler_flag("-Wcast-qual" SUPPORTED_COMPILER_FLAGS)
26     add_c_compiler_flag("-Werror=address" SUPPORTED_COMPILER_FLAGS)
27     add_c_compiler_flag("-Wstrict-prototypes" SUPPORTED_COMPILER_FLAGS)
28     add_c_compiler_flag("-Werror=strict-prototypes" SUPPORTED_COMPILER_FLAGS)
29     add_c_compiler_flag("-Wwrite-strings" SUPPORTED_COMPILER_FLAGS)
30     add_c_compiler_flag("-Werror=write-strings" SUPPORTED_COMPILER_FLAGS)
31     add_c_compiler_flag("-Werror-implicit-function-declaration" SUPPORTED_COMPILER_FLAGS)
32     add_c_compiler_flag("-Wpointer-arith" SUPPORTED_COMPILER_FLAGS)
33     add_c_compiler_flag("-Werror=pointer-arith" SUPPORTED_COMPILER_FLAGS)
34     add_c_compiler_flag("-Wdeclaration-after-statement" SUPPORTED_COMPILER_FLAGS)
35     add_c_compiler_flag("-Werror=declaration-after-statement" SUPPORTED_COMPILER_FLAGS)
36     add_c_compiler_flag("-Wreturn-type" SUPPORTED_COMPILER_FLAGS)
37     add_c_compiler_flag("-Werror=return-type" SUPPORTED_COMPILER_FLAGS)
38     add_c_compiler_flag("-Wuninitialized" SUPPORTED_COMPILER_FLAGS)
39     add_c_compiler_flag("-Werror=uninitialized" SUPPORTED_COMPILER_FLAGS)
40     add_c_compiler_flag("-Wimplicit-fallthrough" SUPPORTED_COMPILER_FLAGS)
41     add_c_compiler_flag("-Werror=strict-overflow" SUPPORTED_COMPILER_FLAGS)
42     add_c_compiler_flag("-Wstrict-overflow=2" SUPPORTED_COMPILER_FLAGS)
43     add_c_compiler_flag("-Wno-format-zero-length" SUPPORTED_COMPILER_FLAGS)
44
45     check_c_compiler_flag("-Wformat" REQUIRED_FLAGS_WFORMAT)
46     if (REQUIRED_FLAGS_WFORMAT)
47         list(APPEND SUPPORTED_COMPILER_FLAGS "-Wformat")
48         set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Wformat")
49     endif()
50     add_c_compiler_flag("-Wformat-security" SUPPORTED_COMPILER_FLAGS)
51     add_c_compiler_flag("-Werror=format-security" SUPPORTED_COMPILER_FLAGS)
52
53     # Allow zero for a variadic macro argument
54     string(TOLOWER "${CMAKE_C_COMPILER_ID}" _C_COMPILER_ID)
55     if ("${_C_COMPILER_ID}" STREQUAL "clang")
56         add_c_compiler_flag("-Wno-gnu-zero-variadic-macro-arguments" SUPPORTED_COMPILER_FLAGS)
57     endif()
58
59     add_c_compiler_flag("-fno-common" SUPPORTED_COMPILER_FLAGS)
60
61     if (CMAKE_BUILD_TYPE)
62         string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
63         if (CMAKE_BUILD_TYPE_LOWER MATCHES (release|relwithdebinfo|minsizerel))
64             add_c_compiler_flag("-Wp,-D_FORTIFY_SOURCE=2" SUPPORTED_COMPILER_FLAGS)
65         endif()
66     endif()
67
68     if (NOT SOLARIS)
69         check_c_compiler_flag_ssp("-fstack-protector-strong" WITH_STACK_PROTECTOR_STRONG)
70         if (WITH_STACK_PROTECTOR_STRONG)
71             list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector-strong")
72             # This is needed as Solaris has a seperate libssp
73             if (SOLARIS)
74                 list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector-strong")
75             endif()
76         else (WITH_STACK_PROTECTOR_STRONG)
77             check_c_compiler_flag_ssp("-fstack-protector" WITH_STACK_PROTECTOR)
78             if (WITH_STACK_PROTECTOR)
79                 list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector")
80                 # This is needed as Solaris has a seperate libssp
81                 if (SOLARIS)
82                     list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector")
83                 endif()
84             endif()
85         endif (WITH_STACK_PROTECTOR_STRONG)
86
87         check_c_compiler_flag_ssp("-fstack-clash-protection" WITH_STACK_CLASH_PROTECTION)
88         if (WITH_STACK_CLASH_PROTECTION)
89             list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-clash-protection")
90         endif()
91     endif()
92
93     if (PICKY_DEVELOPER)
94         add_c_compiler_flag("-Wno-error=deprecated-declarations" SUPPORTED_COMPILER_FLAGS)
95         add_c_compiler_flag("-Wno-error=tautological-compare" SUPPORTED_COMPILER_FLAGS)
96     endif()
97
98     # Unset CMAKE_REQUIRED_FLAGS
99     unset(CMAKE_REQUIRED_FLAGS)
100 endif()
101
102 if (MSVC)
103     add_c_compiler_flag("/D _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1" SUPPORTED_COMPILER_FLAGS)
104     add_c_compiler_flag("/D _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1" SUPPORTED_COMPILER_FLAGS)
105     add_c_compiler_flag("/D _CRT_NONSTDC_NO_WARNINGS=1" SUPPORTED_COMPILER_FLAGS)
106     add_c_compiler_flag("/D _CRT_SECURE_NO_WARNINGS=1" SUPPORTED_COMPILER_FLAGS)
107 endif()
108
109 if (SUPPORTED_COMPILER_FLAGS)
110     set(DEFAULT_C_COMPILE_FLAGS ${SUPPORTED_COMPILER_FLAGS} CACHE INTERNAL "Default C Compiler Flags" FORCE)
111 endif()
112 if (SUPPORTED_LINKER_FLAGS)
113     set(DEFAULT_LINK_FLAGS ${SUPPORTED_LINKER_FLAGS} CACHE INTERNAL "Default C Linker Flags" FORCE)
114 endif()