aboutsummaryrefslogtreecommitdiff
path: root/bolt
diff options
context:
space:
mode:
authorAlexey Lapshin <55248412+avl-llvm@users.noreply.github.com>2024-01-12 15:36:44 +0300
committerGitHub <noreply@github.com>2024-01-12 15:36:44 +0300
commit35708b07547950ec94e5481227da4b47fcc629b7 (patch)
tree98c51841128a4da6eb0cb8d2bc957bef85c2f014 /bolt
parent2798b72ae7e5caad793169b77cbac47fe2362d0f (diff)
downloadllvm-35708b07547950ec94e5481227da4b47fcc629b7.zip
llvm-35708b07547950ec94e5481227da4b47fcc629b7.tar.gz
llvm-35708b07547950ec94e5481227da4b47fcc629b7.tar.bz2
[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.
Diffstat (limited to 'bolt')
-rw-r--r--bolt/lib/Rewrite/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/lib/Rewrite/CMakeLists.txt b/bolt/lib/Rewrite/CMakeLists.txt
index fb21c13..6890f52 100644
--- a/bolt/lib/Rewrite/CMakeLists.txt
+++ b/bolt/lib/Rewrite/CMakeLists.txt
@@ -5,8 +5,8 @@ set(LLVM_LINK_COMPONENTS
MC
Object
Support
- DWARFLinkerBase
DWARFLinker
+ DWARFLinkerClassic
AsmPrinter
TargetParser
)