mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Drop explicit MSVC's DYNAMICBASE option setting in favour of defaults
This option is not supported on Arm64 and the defaults should be fine
This commit is contained in:
parent
837651e318
commit
907ffde577
|
@ -169,17 +169,6 @@ foreach (_build_type ${_build_types_as_upper})
|
||||||
string(APPEND CMAKE_EXE_LINKER_FLAGS_${_build_type} " /TLBID:1")
|
string(APPEND CMAKE_EXE_LINKER_FLAGS_${_build_type} " /TLBID:1")
|
||||||
string(APPEND CMAKE_SHARED_LINKER_FLAGS_${_build_type} " /TLBID:1")
|
string(APPEND CMAKE_SHARED_LINKER_FLAGS_${_build_type} " /TLBID:1")
|
||||||
|
|
||||||
# FIXME: This is not necessary. This is MSVC's default.
|
|
||||||
# Address space layout randomization
|
|
||||||
# See https://msdn.microsoft.com/en-us/library/bb384887.aspx
|
|
||||||
string(APPEND CMAKE_EXE_LINKER_FLAGS_${_build_type} " /DYNAMICBASE")
|
|
||||||
if(ENABLE_CFI)
|
|
||||||
# CFI requires /DYNAMICBASE to be enabled.
|
|
||||||
string(APPEND CMAKE_SHARED_LINKER_FLAGS_${_build_type} " /DYNAMICBASE")
|
|
||||||
else()
|
|
||||||
string(APPEND CMAKE_SHARED_LINKER_FLAGS_${_build_type} " /DYNAMICBASE:NO")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# FIXME: This is not necessary. This is MSVC's default.
|
# FIXME: This is not necessary. This is MSVC's default.
|
||||||
# Indicate that the executable is compatible with DEP
|
# Indicate that the executable is compatible with DEP
|
||||||
# See https://msdn.microsoft.com/en-us/library/ms235442.aspx
|
# See https://msdn.microsoft.com/en-us/library/ms235442.aspx
|
||||||
|
|
Loading…
Reference in a new issue