mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
adecc4fab7
This attempts to move all tools over to using `add_llvm_library` for better consistency. After doing this, I noticed it ended up as nearly a reimplementation of https://reviews.llvm.org/rL342148, which later got reverted in r342336 (b09a8c9bd9b819741b38071a7ccd95042ef2643a). With ccache and ninja on a large core machine (40), I haven't run into build errors, so I'm hopeful it's better now, though it doesn't seem to be any different / new. Reviewed By: stephenneuendorffer Differential Revision: https://reviews.llvm.org/D90970
32 lines
834 B
CMake
32 lines
834 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MC
|
|
MCParser
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_tool(llvm-exegesis
|
|
DISABLE_LLVM_LINK_LLVM_DYLIB
|
|
llvm-exegesis.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|
|
|
|
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}
|
|
)
|