mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
commit
45007f35cf
@ -749,7 +749,12 @@ else()
|
|||||||
# PIE executables randomly crash at startup with ASAN
|
# PIE executables randomly crash at startup with ASAN
|
||||||
# Windows binaries die on startup with PIE when compiled with GCC <9.x
|
# Windows binaries die on startup with PIE when compiled with GCC <9.x
|
||||||
# Windows dynamically-linked binaries die on startup with PIE regardless of GCC version
|
# Windows dynamically-linked binaries die on startup with PIE regardless of GCC version
|
||||||
add_linker_flag_if_supported(-pie LD_SECURITY_FLAGS)
|
if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
||||||
|
# Clang does not support -pie flag
|
||||||
|
add_linker_flag_if_supported("-Wl,-pie" LD_SECURITY_FLAGS)
|
||||||
|
else()
|
||||||
|
add_linker_flag_if_supported("-pie" LD_SECURITY_FLAGS)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
add_linker_flag_if_supported(-Wl,-z,relro LD_SECURITY_FLAGS)
|
add_linker_flag_if_supported(-Wl,-z,relro LD_SECURITY_FLAGS)
|
||||||
add_linker_flag_if_supported(-Wl,-z,now LD_SECURITY_FLAGS)
|
add_linker_flag_if_supported(-Wl,-z,now LD_SECURITY_FLAGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user