forked from OSchip/llvm-project
44 lines
661 B
CMake
44 lines
661 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(ELFOptionsTableGen)
|
|
|
|
add_lld_library(lldELF
|
|
Driver.cpp
|
|
DriverUtils.cpp
|
|
DynamicList.cpp
|
|
Error.cpp
|
|
ICF.cpp
|
|
InputFiles.cpp
|
|
InputSection.cpp
|
|
LTO.cpp
|
|
LinkerScript.cpp
|
|
MarkLive.cpp
|
|
OutputSections.cpp
|
|
ScriptParser.cpp
|
|
SymbolTable.cpp
|
|
Symbols.cpp
|
|
Target.cpp
|
|
Writer.cpp
|
|
|
|
LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
Analysis
|
|
BitReader
|
|
BitWriter
|
|
Core
|
|
IPO
|
|
Linker
|
|
Object
|
|
Option
|
|
MC
|
|
Support
|
|
Target
|
|
TransformUtils
|
|
|
|
LINK_LIBS
|
|
lldConfig
|
|
${PTHREAD_LIB}
|
|
)
|
|
|
|
add_dependencies(lldELF ELFOptionsTableGen)
|