reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 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} ) |