Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bolt/lib/Rewrite/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set(LLVM_LINK_COMPONENTS
MC
Object
Support
DWARFLinkerBase
DWARFLinker
DWARFLinkerClassic
AsmPrinter
TargetParser
)
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/DWARFLinker/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_llvm_component_library(LLVMDWARFLinkerBase
add_llvm_component_library(LLVMDWARFLinker
Utils.cpp

ADDITIONAL_HEADER_DIRS
Expand Down
4 changes: 2 additions & 2 deletions llvm/lib/DWARFLinker/Classic/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_llvm_component_library(LLVMDWARFLinker
add_llvm_component_library(LLVMDWARFLinkerClassic
DWARFLinkerCompileUnit.cpp
DWARFLinkerDeclContext.cpp
DWARFLinker.cpp
Expand All @@ -16,7 +16,7 @@ add_llvm_component_library(LLVMDWARFLinker
CodeGen
CodeGenTypes
DebugInfoDWARF
DWARFLinkerBase
DWARFLinker
MC
Object
Support
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/DWARFLinker/Parallel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ add_llvm_component_library(LLVMDWARFLinkerParallel
BinaryFormat
CodeGen
DebugInfoDWARF
DWARFLinkerBase
DWARFLinker
MC
Object
Support
Expand Down
2 changes: 1 addition & 1 deletion llvm/tools/dsymutil/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ set(LLVM_LINK_COMPONENTS
AsmPrinter
CodeGen
CodeGenTypes
DWARFLinkerBase
DWARFLinker
DWARFLinkerClassic
DWARFLinkerParallel
DebugInfoDWARF
MC
Expand Down
2 changes: 1 addition & 1 deletion llvm/tools/llvm-dwarfutil/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ set(LLVM_LINK_COMPONENTS
AllTargetsDescs
AllTargetsInfos
CodeGenTypes
DWARFLinkerBase
DWARFLinker
DWARFLinkerClassic
DWARFLinkerParallel
DebugInfoDWARF
MC
Expand Down
1 change: 1 addition & 0 deletions llvm/unittests/DWARFLinkerParallel/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
set(LLVM_LINK_COMPONENTS
DWARFLinker
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also seems unrelated

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is necessary in general even if everything is working currently without DWARFLinker(as LLVMDWARFLinker contains base functionality).

DWARFLinkerParallel
Support
)
Expand Down