author | koda |
Thu, 13 Jun 2013 17:01:26 +0200 | |
changeset 9221 | c4289023ddae |
parent 9220 | 5e7db24f3489 |
child 9222 | a19fa86509c2 |
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 |
|
9191 | 12 |
#stack protection, when found it needs to go in the linker flags too |
13 |
#it is disabled on win32 because it adds a dll and messes with linker |
|
14 |
#(see 822312 654424 on bugzilla.redhat.com) |
|
9221 | 15 |
if(NOT WIN32) |
16 |
check_c_compiler_flag("-fstack-protector-all -fstack-protector" HAVE_STACKPROTECTOR) |
|
17 |
endif() |
|
18 |
if(HAVE_STACKPROTECTOR) |
|
9167 | 19 |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector-all -fstack-protector") |
20 |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-all -fstack-protector") |
|
21 |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fstack-protector-all -fstack-protector") |
|
9217 | 22 |
set(CMAKE_SHARED_LIBRARY_C_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS} -fstack-protector-all -fstack-protector") |
23 |
set(CMAKE_SHARED_LIBRARY_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CXX_FLAGS} -fstack-protector-all -fstack-protector") |
|
9155
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
24 |
endif() |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
25 |
|
9221 | 26 |
#symbol visibility, not supported on Windows |
27 |
if(NOT WIN32) |
|
28 |
check_c_compiler_flag("-fvisibility=hidden" HAVE_VISIBILITY) |
|
29 |
endif() |
|
9169 | 30 |
if(HAVE_VISIBILITY) |
9155
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
31 |
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
|
32 |
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
|
33 |
endif() |
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
34 |
|
480f483de544
add fstack-protector and fvisibility=hidden to cmake tests
koda
parents:
9154
diff
changeset
|
35 |
|
9152 | 36 |
#check for noexecstack on ELF, Gentoo security |
37 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-z,noexecstack") |
|
38 |
check_c_compiler_flag("" HAVE_NOEXECSTACK) |
|
39 |
if(HAVE_NOEXECSTACK) |
|
9220 | 40 |
append_linker_flag("-znoexecstack") |
9152 | 41 |
endif() |
42 |
||
9153 | 43 |
#check for full relro on ELF, Debian security |
9220 | 44 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-zrelro,-znow") |
9153 | 45 |
check_c_compiler_flag("" HAVE_RELROFULL) |
46 |
if(HAVE_RELROFULL) |
|
9220 | 47 |
append_linker_flag("-zrelro") |
48 |
append_linker_flag("-znow") |
|
9153 | 49 |
else() |
50 |
#if full relro is not available, try partial relro |
|
9220 | 51 |
set(CMAKE_REQUIRED_FLAGS "-Wl,-zrelro") |
9153 | 52 |
check_c_compiler_flag("" HAVE_RELROPARTIAL) |
53 |
if(HAVE_RELROPARTIAL) |
|
9220 | 54 |
append_linker_flag("-zrelro") |
9153 | 55 |
endif() |
56 |
endif() |
|
57 |
||
9152 | 58 |
#check for ASLR on Windows Vista or later, requires binutils >= 2.20 |
59 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--nxcompat") |
|
60 |
check_c_compiler_flag("" HAVE_WINASLR) |
|
61 |
if(HAVE_WINASLR) |
|
9220 | 62 |
append_linker_flag("--nxcompat") |
9152 | 63 |
endif() |
64 |
||
65 |
#check for DEP on Windows XP SP2 or later, requires binutils >= 2.20 |
|
66 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--dynamicbase") |
|
67 |
check_c_compiler_flag("" HAVE_WINDEP) |
|
68 |
if(HAVE_WINDEP) |
|
9220 | 69 |
append_linker_flag("--dynamicbase") |
9152 | 70 |
endif() |
71 |
||
9206
4788b24fee05
since shared libs are now our friends, let's optimise them
koda
parents:
9169
diff
changeset
|
72 |
#this is actually an optimisation |
4788b24fee05
since shared libs are now our friends, let's optimise them
koda
parents:
9169
diff
changeset
|
73 |
set(CMAKE_REQUIRED_FLAGS "-Wl,--as-needed") |
4788b24fee05
since shared libs are now our friends, let's optimise them
koda
parents:
9169
diff
changeset
|
74 |
check_c_compiler_flag("" HAVE_ASNEEDED) |
4788b24fee05
since shared libs are now our friends, let's optimise them
koda
parents:
9169
diff
changeset
|
75 |
if(HAVE_ASNEEDED) |
9220 | 76 |
append_linker_flag("--as-needed") |
9206
4788b24fee05
since shared libs are now our friends, let's optimise them
koda
parents:
9169
diff
changeset
|
77 |
endif() |
9152 | 78 |
|
79 |
#always unset or these flags will be spread everywhere |
|
80 |
unset(CMAKE_REQUIRED_FLAGS) |
|
81 |