Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. set(LLVM_TARGET_DEFINITIONS Options.td)
  2. tablegen(LLVM Options.inc -gen-opt-parser-defs)
  3. add_public_tablegen_target(COFFOptionsTableGen)
  4.  
  5. if(NOT LLD_BUILT_STANDALONE)
  6. set(tablegen_deps intrinsics_gen)
  7. endif()
  8.  
  9. add_lld_library(lldCOFF
  10. Chunks.cpp
  11. DebugTypes.cpp
  12. DLL.cpp
  13. Driver.cpp
  14. DriverUtils.cpp
  15. ICF.cpp
  16. InputFiles.cpp
  17. LTO.cpp
  18. MapFile.cpp
  19. MarkLive.cpp
  20. MinGW.cpp
  21. PDB.cpp
  22. SymbolTable.cpp
  23. Symbols.cpp
  24. Writer.cpp
  25.  
  26. LINK_COMPONENTS
  27. ${LLVM_TARGETS_TO_BUILD}
  28. BinaryFormat
  29. Core
  30. DebugInfoCodeView
  31. DebugInfoDWARF
  32. DebugInfoMSF
  33. DebugInfoPDB
  34. Demangle
  35. LibDriver
  36. LTO
  37. MC
  38. Object
  39. Option
  40. Support
  41. WindowsManifest
  42.  
  43. LINK_LIBS
  44. lldCommon
  45. ${LLVM_PTHREAD_LIB}
  46.  
  47. ENABLE_PLUGINS
  48.  
  49. DEPENDS
  50. COFFOptionsTableGen
  51. ${tablegen_deps}
  52. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement