diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-14 12:20:32 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-14 12:20:32 +0200 |
commit | e8049be955e8a5e5bc355ed1a8cb62768e9ce5f1 (patch) | |
tree | 221886386e24cd228942d35c58ea23599a3bf8e6 | |
parent | Merge pull request #4154 (diff) | |
parent | CMakeLists.txt: detect -fcf-protection=full and -fstack-clash-protection (diff) | |
download | monero-e8049be955e8a5e5bc355ed1a8cb62768e9ce5f1.tar.xz |
Merge pull request #4178
347bba9d CMakeLists.txt: detect -fcf-protection=full and -fstack-clash-protection (moneromooo-monero)
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a02f62e62..e4b6bfe01 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -570,6 +570,14 @@ else() add_cxx_flag_if_supported(-fstack-protector-strong CXX_SECURITY_FLAGS) endif() + # New in GCC 8.2 + if (NOT WIN32) + add_c_flag_if_supported(-fcf-protection=full C_SECURITY_FLAGS) + add_cxx_flag_if_supported(-fcf-protection=full CXX_SECURITY_FLAGS) + add_c_flag_if_supported(-fstack-clash-protection C_SECURITY_FLAGS) + add_cxx_flag_if_supported(-fstack-clash-protection CXX_SECURITY_FLAGS) + endif() + # linker if (NOT WIN32) # Windows binaries die on startup with PIE |