mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
8fcf012693
Major refactor to better match the structure of the ELF linker. - Split out relocation processing into scanRelocations - Split out synthetic sections into their own classes. Differential Revision: https://reviews.llvm.org/D61811 llvm-svn: 361233
41 lines
633 B
CMake
41 lines
633 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(WasmOptionsTableGen)
|
|
|
|
if(NOT LLD_BUILT_STANDALONE)
|
|
set(tablegen_deps intrinsics_gen)
|
|
endif()
|
|
|
|
add_lld_library(lldWasm
|
|
Driver.cpp
|
|
InputChunks.cpp
|
|
InputFiles.cpp
|
|
LTO.cpp
|
|
MarkLive.cpp
|
|
OutputSections.cpp
|
|
Relocations.cpp
|
|
SymbolTable.cpp
|
|
Symbols.cpp
|
|
SyntheticSections.cpp
|
|
Writer.cpp
|
|
WriterUtils.cpp
|
|
|
|
LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
BinaryFormat
|
|
Core
|
|
Demangle
|
|
LTO
|
|
MC
|
|
Object
|
|
Option
|
|
Support
|
|
|
|
LINK_LIBS
|
|
lldCommon
|
|
|
|
DEPENDS
|
|
WasmOptionsTableGen
|
|
${tablegen_deps}
|
|
)
|