mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 06:40:18 +00:00
[compiler-rt] Make use of undefined symbols configurable
We want to disable the use of undefined symbols on Fuchsia, but there are cases where it might be desirable so may it configurable. Differential Revision: https://reviews.llvm.org/D104728
This commit is contained in:
parent
6000749804
commit
cadfaf2df4
@ -437,10 +437,18 @@ else()
|
||||
endif()
|
||||
|
||||
append_list_if(COMPILER_RT_HAS_LIBC c SANITIZER_COMMON_LINK_LIBS)
|
||||
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Fuchsia")
|
||||
list(APPEND SANITIZER_COMMON_LINK_LIBS zircon)
|
||||
endif()
|
||||
|
||||
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Fuchsia")
|
||||
set(SANITIZER_NO_UNDEFINED_SYMBOLS_DEFAULT ON)
|
||||
else()
|
||||
set(SANITIZER_NO_UNDEFINED_SYMBOLS_DEFAULT OFF)
|
||||
endif()
|
||||
option(SANITIZER_NO_UNDEFINED_SYMBOLS "Report error on unresolved symbol references" ${SANITIZER_NO_UNDEFINED_SYMBOLS_DEFAULT})
|
||||
if (SANITIZER_NO_UNDEFINED_SYMBOLS)
|
||||
list(APPEND SANITIZER_COMMON_LINK_FLAGS -Wl,-z,defs)
|
||||
list(APPEND SANITIZER_COMMON_LINK_LIBS zircon)
|
||||
endif()
|
||||
|
||||
# TODO: COMPILER_RT_COMMON_CFLAGS and COMPILER_RT_COMMON_LINK_FLAGS are
|
||||
|
Loading…
Reference in New Issue
Block a user