Files
clang-p2996/llvm/lib/DWARFLinker/Parallel/CMakeLists.txt
Mehdi Amini e29cad6b3b More fix BUILD_SHARED_LIBS=ON build for platforms which require explicit link of -lpthread (NFC)
Some systems requires explictly providing -lpthread when linking, I don't
have such system so it is hard to find all the missing cases.
2024-03-02 19:36:22 -08:00

34 lines
594 B
CMake

add_llvm_component_library(LLVMDWARFLinkerParallel
AcceleratorRecordsSaver.cpp
DependencyTracker.cpp
DIEAttributeCloner.cpp
DWARFEmitterImpl.cpp
DWARFLinker.cpp
DWARFLinkerCompileUnit.cpp
DWARFLinkerTypeUnit.cpp
DWARFLinkerImpl.cpp
DWARFLinkerUnit.cpp
OutputSections.cpp
SyntheticTypeNameBuilder.cpp
ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/DWARFLinkerParallel
DEPENDS
intrinsics_gen
LINK_LIBS
${LLVM_PTHREAD_LIB}
LINK_COMPONENTS
AsmPrinter
BinaryFormat
CodeGen
DebugInfoDWARF
DWARFLinker
MC
Object
Support
TargetParser
)