mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-06 01:19:28 +00:00

Without this, when building with shared BUILD_SHARED_LIBS=ON I get errors such as: lib/Core/Reader.cpp:40: error: undefined reference to 'llvm::identify_magic(llvm::StringRef)' Differential Revision: https://reviews.llvm.org/D34004 llvm-svn: 304932
51 lines
744 B
CMake
51 lines
744 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(COFFOptionsTableGen)
|
|
|
|
if(NOT LLD_BUILT_STANDALONE)
|
|
set(tablegen_deps intrinsics_gen)
|
|
endif()
|
|
|
|
add_lld_library(lldCOFF
|
|
Chunks.cpp
|
|
DLL.cpp
|
|
Driver.cpp
|
|
DriverUtils.cpp
|
|
Error.cpp
|
|
ICF.cpp
|
|
InputFiles.cpp
|
|
LTO.cpp
|
|
MapFile.cpp
|
|
MarkLive.cpp
|
|
PDB.cpp
|
|
Strings.cpp
|
|
SymbolTable.cpp
|
|
Symbols.cpp
|
|
Writer.cpp
|
|
|
|
LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
BinaryFormat
|
|
BitReader
|
|
Core
|
|
DebugInfoCodeView
|
|
DebugInfoMSF
|
|
DebugInfoPDB
|
|
LTO
|
|
LibDriver
|
|
Object
|
|
MC
|
|
MCDisassembler
|
|
Target
|
|
Option
|
|
Support
|
|
|
|
LINK_LIBS
|
|
lldCore
|
|
${LLVM_PTHREAD_LIB}
|
|
|
|
DEPENDS
|
|
COFFOptionsTableGen
|
|
${tablegen_deps}
|
|
)
|