mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 00:16:05 +00:00

It was noted that new DWARFLinker libraries do not follow naming agreement - https://github.com/llvm/llvm-project/pull/75925#issuecomment-1883301659 This patch rename libraries to match with the agreement. Rename LLVMDWARFLinkerBase library into the LLVMDWARFLinker. Rename LLVMDWARFLinker library into the LLVMDWARFLinkerClassic. Correct include path according to the new directory structure.
31 lines
501 B
CMake
31 lines
501 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(DwarfutilTableGen)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsCodeGens
|
|
AllTargetsDescs
|
|
AllTargetsInfos
|
|
CodeGenTypes
|
|
DWARFLinker
|
|
DWARFLinkerClassic
|
|
DWARFLinkerParallel
|
|
DebugInfoDWARF
|
|
MC
|
|
ObjCopy
|
|
Object
|
|
Option
|
|
Support
|
|
Target
|
|
TargetParser
|
|
)
|
|
|
|
add_llvm_tool(llvm-dwarfutil
|
|
llvm-dwarfutil.cpp
|
|
DebugInfoLinker.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
${tablegen_deps}
|
|
)
|