Skip to content

Commit 35708b0

Browse files
authored
[DWARFLinker][NFC] Rename libraries to match with directories name. (#77592)
It was noted that new DWARFLinker libraries do not follow naming agreement - #75925 (comment) 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.
1 parent 2798b72 commit 35708b0

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

bolt/lib/Rewrite/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set(LLVM_LINK_COMPONENTS
55
MC
66
Object
77
Support
8-
DWARFLinkerBase
98
DWARFLinker
9+
DWARFLinkerClassic
1010
AsmPrinter
1111
TargetParser
1212
)

llvm/lib/DWARFLinker/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_llvm_component_library(LLVMDWARFLinkerBase
1+
add_llvm_component_library(LLVMDWARFLinker
22
Utils.cpp
33

44
ADDITIONAL_HEADER_DIRS

llvm/lib/DWARFLinker/Classic/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_llvm_component_library(LLVMDWARFLinker
1+
add_llvm_component_library(LLVMDWARFLinkerClassic
22
DWARFLinkerCompileUnit.cpp
33
DWARFLinkerDeclContext.cpp
44
DWARFLinker.cpp
@@ -16,7 +16,7 @@ add_llvm_component_library(LLVMDWARFLinker
1616
CodeGen
1717
CodeGenTypes
1818
DebugInfoDWARF
19-
DWARFLinkerBase
19+
DWARFLinker
2020
MC
2121
Object
2222
Support

llvm/lib/DWARFLinker/Parallel/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ add_llvm_component_library(LLVMDWARFLinkerParallel
2222
BinaryFormat
2323
CodeGen
2424
DebugInfoDWARF
25-
DWARFLinkerBase
25+
DWARFLinker
2626
MC
2727
Object
2828
Support

llvm/tools/dsymutil/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ set(LLVM_LINK_COMPONENTS
99
AsmPrinter
1010
CodeGen
1111
CodeGenTypes
12-
DWARFLinkerBase
1312
DWARFLinker
13+
DWARFLinkerClassic
1414
DWARFLinkerParallel
1515
DebugInfoDWARF
1616
MC

llvm/tools/llvm-dwarfutil/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ set(LLVM_LINK_COMPONENTS
77
AllTargetsDescs
88
AllTargetsInfos
99
CodeGenTypes
10-
DWARFLinkerBase
1110
DWARFLinker
11+
DWARFLinkerClassic
1212
DWARFLinkerParallel
1313
DebugInfoDWARF
1414
MC

llvm/unittests/DWARFLinkerParallel/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
set(LLVM_LINK_COMPONENTS
2+
DWARFLinker
23
DWARFLinkerParallel
34
Support
45
)

0 commit comments

Comments
 (0)