blob: 3dcb65ff895772667b2077fe2b8877a065f05aa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
set(LLVM_TARGET_DEFINITIONS Options.td)
tablegen(LLVM Options.inc -gen-opt-parser-defs)
add_public_tablegen_target(ELFOptionsTableGen)
add_lld_library(lldELF2
Driver.cpp
DriverUtils.cpp
Error.cpp
InputFiles.cpp
InputSection.cpp
LinkerScript.cpp
MarkLive.cpp
OutputSections.cpp
SymbolTable.cpp
Symbols.cpp
Target.cpp
Writer.cpp
LINK_COMPONENTS
Object
Option
MC
Support
)
add_dependencies(lldELF2 ELFOptionsTableGen)
|