author | koda |
Mon, 10 Jun 2013 10:59:49 +0200 | |
changeset 9167 | ecf19179b37e |
parent 9165 | 7b0d5388abc4 |
child 9169 | ef53201e95ec |
permissions | -rw-r--r-- |
9152 | 1 |
|
2 |
#TESTING TIME |
|
3 |
include(CheckCCompilerFlag) |
|
4 |
#when you need to check for a linker flag, just leave the argument of "check_c_compiler_flag" empty |
|
5 |
||
9159 | 6 |
# CMAKE_C{XX}_FLAGS is for compiler flags (c and c++) |
7 |
# CMAKE_EXE_LINKER_FLAGS is for linker flags (also add them to pascal_flags and haskell_flags) |
|
9165
7b0d5388abc4
stack-protector flag needs to be passed to the linker as well
koda
parents:
9159
diff
changeset
|
8 |
# CMAKE_SHARED_LIBRARY_<lang>_FLAGS same but for shared libraries |
9152 | 9 |
|
9156
6bf5359d5d14
make sure that also CXX sources pick up the flags (although I'm not 100% of the correctness of the tests)
koda
parents:
9155
diff
changeset
|
10 |
#TODO: should there be two different checks for C and CXX? |
6bf5359d5d14
make sure that also CXX sources pick up the flags (although I'm not 100% of the correctness of the tests)
koda
parents:
9155
diff
changeset
|
11 |
|
9165
7b0d5388abc4
stack-protector flag needs to be passed to the linker as well
koda
parents:
9159
diff
changeset
|
12 |
#stack protection, when found it needs to go in the linker flags too (-lssp is added) |
9167 | 13 |
check_c_compiler_flag("-fstack-protector-all -fstack-protector" HAVE_STACKPROTECTOR) |
9155
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
14 |
if(HAVE_STACKPROTECTOR) |
9167 | 15 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector-all -fstack-protector") |
16 |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-all -fstack-protector") |
|
17 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fstack-protector-all -fstack-protector") |
|
18 |
set(CMAKE_SHARED_LIBRARY_C_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS} -fstack-protector-all -fstack-protector") |
|
19 |
set(CMAKE_SHARED_LIBRARY_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS} -fstack-protector-all -fstack-protector") |
|
9155
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
20 |
endif() |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
21 |
|
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
22 |
#symbol visibility |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
23 |
check_c_compiler_flag("-fvisibility=hidden" HAVE_VISIBILITYH) |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
24 |
if(HAVE_VISIBILITYH) |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
25 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden") |
9156
6bf5359d5d14
make sure that also CXX sources pick up the flags (although I'm not 100% of the correctness of the tests)
koda
parents:
9155
diff
changeset
|
26 |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden") |
9155
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
27 |
endif() |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
28 |
|
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
29 |
|
9152 | 30 |
#check for noexecstack on ELF, Gentoo security |
31 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-z,noexecstack") |
|
32 |
check_c_compiler_flag("" HAVE_NOEXECSTACK) |
|
33 |
if(HAVE_NOEXECSTACK) |
|
34 |
list(APPEND pascal_flags "-k-z" "-knoexecstack") |
|
9154 | 35 |
list(APPEND haskell_flags "-optl" "-z" "-optl" "noexecstack") |
9159 | 36 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
9152 | 37 |
endif() |
38 |
||
9153 | 39 |
#check for full relro on ELF, Debian security |
40 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-z,relro,-z,now") |
|
41 |
check_c_compiler_flag("" HAVE_RELROFULL) |
|
42 |
if(HAVE_RELROFULL) |
|
43 |
list(APPEND pascal_flags "-k-z" "-krelro" "-k-z" "-know") |
|
9154 | 44 |
list(APPEND haskell_flags "-optl" "-z" "-optl" "relro" "-optl" "-z" "-optl" "now") |
9159 | 45 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
9153 | 46 |
else() |
47 |
#if full relro is not available, try partial relro |
|
48 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-z,relro") |
|
49 |
check_c_compiler_flag("" HAVE_RELROPARTIAL) |
|
50 |
if(HAVE_RELROPARTIAL) |
|
51 |
list(APPEND pascal_flags "-k-z" "-krelro") |
|
9154 | 52 |
list(APPEND haskell_flags "-optl" "-z" "-optl" "relro") |
9159 | 53 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
9153 | 54 |
endif() |
55 |
endif() |
|
56 |
||
9152 | 57 |
#check for ASLR on Windows Vista or later, requires binutils >= 2.20 |
58 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--nxcompat") |
|
59 |
check_c_compiler_flag("" HAVE_WINASLR) |
|
60 |
if(HAVE_WINASLR) |
|
61 |
list(APPEND pascal_flags "-k--nxcompat") |
|
9154 | 62 |
list(APPEND haskell_flags "-optl" "--nxcompat") |
9159 | 63 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
9152 | 64 |
endif() |
65 |
||
66 |
#check for DEP on Windows XP SP2 or later, requires binutils >= 2.20 |
|
67 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--dynamicbase") |
|
68 |
check_c_compiler_flag("" HAVE_WINDEP) |
|
69 |
if(HAVE_WINDEP) |
|
70 |
list(APPEND pascal_flags "-k--dynamicbase") |
|
9154 | 71 |
list(APPEND haskell_flags "-optl" "--dynamicbase") |
9159 | 72 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_REQUIRED_FLAGS}") |
9152 | 73 |
endif() |
74 |
||
75 |
||
76 |
#always unset or these flags will be spread everywhere |
|
77 |
unset(CMAKE_REQUIRED_FLAGS) |
|
78 |