[DWARFLinker][NFC] Rename libraries to match with directories name. (#77592)

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.
This commit is contained in:
Alexey Lapshin 2024-01-12 15:36:44 +03:00 committed by GitHub
parent 2798b72ae7
commit 35708b0754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 7 deletions

View File

@ -5,8 +5,8 @@ set(LLVM_LINK_COMPONENTS
MC MC
Object Object
Support Support
DWARFLinkerBase
DWARFLinker DWARFLinker
DWARFLinkerClassic
AsmPrinter AsmPrinter
TargetParser TargetParser
) )

View File

@ -1,4 +1,4 @@
add_llvm_component_library(LLVMDWARFLinkerBase add_llvm_component_library(LLVMDWARFLinker
Utils.cpp Utils.cpp
ADDITIONAL_HEADER_DIRS ADDITIONAL_HEADER_DIRS

View File

@ -1,4 +1,4 @@
add_llvm_component_library(LLVMDWARFLinker add_llvm_component_library(LLVMDWARFLinkerClassic
DWARFLinkerCompileUnit.cpp DWARFLinkerCompileUnit.cpp
DWARFLinkerDeclContext.cpp DWARFLinkerDeclContext.cpp
DWARFLinker.cpp DWARFLinker.cpp
@ -16,7 +16,7 @@ add_llvm_component_library(LLVMDWARFLinker
CodeGen CodeGen
CodeGenTypes CodeGenTypes
DebugInfoDWARF DebugInfoDWARF
DWARFLinkerBase DWARFLinker
MC MC
Object Object
Support Support

View File

@ -22,7 +22,7 @@ add_llvm_component_library(LLVMDWARFLinkerParallel
BinaryFormat BinaryFormat
CodeGen CodeGen
DebugInfoDWARF DebugInfoDWARF
DWARFLinkerBase DWARFLinker
MC MC
Object Object
Support Support

View File

@ -9,8 +9,8 @@ set(LLVM_LINK_COMPONENTS
AsmPrinter AsmPrinter
CodeGen CodeGen
CodeGenTypes CodeGenTypes
DWARFLinkerBase
DWARFLinker DWARFLinker
DWARFLinkerClassic
DWARFLinkerParallel DWARFLinkerParallel
DebugInfoDWARF DebugInfoDWARF
MC MC

View File

@ -7,8 +7,8 @@ set(LLVM_LINK_COMPONENTS
AllTargetsDescs AllTargetsDescs
AllTargetsInfos AllTargetsInfos
CodeGenTypes CodeGenTypes
DWARFLinkerBase
DWARFLinker DWARFLinker
DWARFLinkerClassic
DWARFLinkerParallel DWARFLinkerParallel
DebugInfoDWARF DebugInfoDWARF
MC MC

View File

@ -1,4 +1,5 @@
set(LLVM_LINK_COMPONENTS set(LLVM_LINK_COMPONENTS
DWARFLinker
DWARFLinkerParallel DWARFLinkerParallel
Support Support
) )