mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
b7573e319d
We need this to make builds with `-DBUILD_SHARED_LIBS=ON` work. llvm-svn: 342952
27 lines
770 B
CMake
27 lines
770 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MCParser
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_tool(llvm-exegesis
|
|
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}
|
|
)
|