Better hardening flags.

This commit is contained in:
EinMByte 2015-08-21 22:50:19 +02:00
parent 8ac9520dfd
commit 103b6db717

View File

@ -53,7 +53,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
)
set(
CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -fstack-protector --param ssp-buffer-size=4"
"${CMAKE_CXX_FLAGS} -fstack-protector-strong -fPIE --param ssp-buffer-size=4 -z relro -z now"
)
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")