mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
c5fb05f663
This relands73e585e44d
(and0574b5fc65
), with a fix for the failing test (by using Optional<StringRef>s instead of making StringRef::empty() mean absence of value). Differential Revision: https://reviews.llvm.org/D118070
52 lines
767 B
CMake
52 lines
767 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(COFFOptionsTableGen)
|
|
|
|
add_lld_library(lldCOFF
|
|
CallGraphSort.cpp
|
|
Chunks.cpp
|
|
COFFLinkerContext.cpp
|
|
DebugTypes.cpp
|
|
DLL.cpp
|
|
Driver.cpp
|
|
DriverUtils.cpp
|
|
ICF.cpp
|
|
InputFiles.cpp
|
|
LLDMapFile.cpp
|
|
LTO.cpp
|
|
MapFile.cpp
|
|
MarkLive.cpp
|
|
MinGW.cpp
|
|
PDB.cpp
|
|
SymbolTable.cpp
|
|
Symbols.cpp
|
|
Writer.cpp
|
|
|
|
LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
BinaryFormat
|
|
Core
|
|
DebugInfoCodeView
|
|
DebugInfoDWARF
|
|
DebugInfoMSF
|
|
DebugInfoPDB
|
|
Demangle
|
|
LibDriver
|
|
LTO
|
|
MC
|
|
Object
|
|
Option
|
|
Passes
|
|
Support
|
|
WindowsDriver
|
|
WindowsManifest
|
|
|
|
LINK_LIBS
|
|
lldCommon
|
|
${LLVM_PTHREAD_LIB}
|
|
|
|
DEPENDS
|
|
COFFOptionsTableGen
|
|
intrinsics_gen
|
|
)
|