brintos

brintos / llvm-project-archived public Read only

0
0
Text · 407 B · 5352e91 Raw
27 lines · plain
1include_directories(2  ${LLVM_MAIN_SRC_DIR}/lib/Target/RISCV3  ${LLVM_BINARY_DIR}/lib/Target/RISCV4)5 6set(LLVM_LINK_COMPONENTS7  CodeGen8  RISCV9  Exegesis10  Core11  Support12  MC13  TargetParser14  )15 16add_llvm_library(LLVMExegesisRISCV17  DISABLE_LLVM_LINK_LLVM_DYLIB18  STATIC19  RISCVExegesisPreprocessing.cpp20  RISCVExegesisPostprocessing.cpp21  Target.cpp22 23  DEPENDS24  intrinsics_gen25  RISCVCommonTableGen26  )27