[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
Object
Support
DWARFLinkerBase
DWARFLinker
DWARFLinkerClassic
AsmPrinter
TargetParser
)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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