mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
e37aaf4758
Force linking llvm-exegesis to static LLVM libraries instead of dylib to prevent duplicate symbols due to linking both. Ideally, we'd want to link to the dylib only here but the target sub-libraries use hidden symbols from LLVM target libraries and therefore linking the dylib fails. Differential Revision: https://reviews.llvm.org/D81922
28 lines
801 B
CMake
28 lines
801 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MCParser
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_tool(llvm-exegesis
|
|
DISABLE_LLVM_LINK_LLVM_DYLIB
|
|
llvm-exegesis.cpp
|
|
)
|
|
|
|
add_subdirectory(lib)
|
|
|
|
# Link the native exegesis target if compiled and on the right host.
|
|
if ((LLVM_TARGETS_TO_BUILD MATCHES "${LLVM_NATIVE_ARCH}") AND (LLVM_EXEGESIS_TARGETS MATCHES "${LLVM_NATIVE_ARCH}"))
|
|
set(LLVM_EXEGESIS_NATIVE_ARCH "${LLVM_NATIVE_ARCH}")
|
|
endif()
|
|
|
|
if (LLVM_EXEGESIS_NATIVE_ARCH)
|
|
set(LLVM_EXEGESIS_NATIVE_TARGET "LLVMExegesis${LLVM_EXEGESIS_NATIVE_ARCH}")
|
|
set_source_files_properties(llvm-exegesis.cpp PROPERTIES COMPILE_FLAGS "-DLLVM_EXEGESIS_INITIALIZE_NATIVE_TARGET=Initialize${LLVM_EXEGESIS_NATIVE_ARCH}ExegesisTarget")
|
|
endif()
|
|
|
|
target_link_libraries(llvm-exegesis PRIVATE
|
|
LLVMExegesis
|
|
${LLVM_EXEGESIS_NATIVE_TARGET}
|
|
)
|