[llvm] 4c9020d - [ORC] Fix shlibs build: add Object to libLLVMOrcDebugging (#168343)

Stefan Gränitz via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 18 05:00:45 PST 2025


Author: Stefan Gränitz
Date: 2025-11-18T13:59:06+01:00
New Revision: 4c9020ded754707448f2d541c0b5d13a95725384

URL: https://github.com/llvm/llvm-project/commit/4c9020ded754707448f2d541c0b5d13a95725384
DIFF: https://github.com/llvm/llvm-project/commit/4c9020ded754707448f2d541c0b5d13a95725384.diff

LOG: [ORC] Fix shlibs build: add Object to libLLVMOrcDebugging (#168343)

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt
    llvm/lib/ExecutionEngine/Orc/Debugging/ELFDebugObjectPlugin.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt b/llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt
index ab287c7af60be..6be59b0890c44 100644
--- a/llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt
+++ b/llvm/lib/ExecutionEngine/Orc/Debugging/CMakeLists.txt
@@ -22,6 +22,7 @@ add_llvm_component_library(LLVMOrcDebugging
   BinaryFormat
   DebugInfoDWARF
   JITLink
+  Object
   OrcJIT
   OrcShared
   Support

diff  --git a/llvm/lib/ExecutionEngine/Orc/Debugging/ELFDebugObjectPlugin.cpp b/llvm/lib/ExecutionEngine/Orc/Debugging/ELFDebugObjectPlugin.cpp
index 9f556b0d07a8b..653645ff03f15 100644
--- a/llvm/lib/ExecutionEngine/Orc/Debugging/ELFDebugObjectPlugin.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/Debugging/ELFDebugObjectPlugin.cpp
@@ -1,4 +1,4 @@
-//===------- ELFDebugObjectPlugin.cpp - JITLink debug objects ---------===//
+//===--------- ELFDebugObjectPlugin.cpp - JITLink debug objects -----------===//
 //
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.


        


More information about the llvm-commits mailing list