brintos

brintos / llvm-project-archived public Read only

0
0
Text · 473 B · d38385c Raw
30 lines · plain
1set(LLVM_LINK_COMPONENTS2  AllTargetsCodeGens3  AllTargetsDescs4  AllTargetsInfos5  DebugInfoDWARF6  DWP7  MC8  Object9  Option10  Support11  TargetParser12  )13 14set(LLVM_TARGET_DEFINITIONS Opts.td)15tablegen(LLVM Opts.inc -gen-opt-parser-defs)16add_public_tablegen_target(DwpOptsTableGen)17 18add_llvm_tool(llvm-dwp19  llvm-dwp.cpp20 21  DEPENDS22  intrinsics_gen23  DwpOptsTableGen24  GENERATE_DRIVER25  )26 27if(LLVM_INSTALL_BINUTILS_SYMLINKS)28  add_llvm_tool_symlink(dwp llvm-dwp)29endif()30