brintos

brintos / llvm-project-archived public Read only

0
0
Text · 428 B · 2bb6686 Raw
26 lines · plain
1set(LLVM_LINK_COMPONENTS2  # Core LLVM components for IR processing3  Analysis4  Core5  IRReader6  Support7  8  # Machine IR components (for -mode=mir)9  CodeGen           10  MIRParser         11  12  # Target initialization (required for MIR parsing)13  AllTargetsAsmParsers14  AllTargetsCodeGens15  AllTargetsDescs16  AllTargetsInfos17  TargetParser18  )19 20add_llvm_tool(llvm-ir2vec21  llvm-ir2vec.cpp22  23  DEPENDS24  intrinsics_gen25  )26