[llvm] 03ba8c8 - [Debuginfod] Fix shared libs build break after eafa0530417e

Nemanja Ivanovic via llvm-commits llvm-commits at lists.llvm.org
Wed May 18 15:33:20 PDT 2022


Author: Nemanja Ivanovic
Date: 2022-05-18T17:33:12-05:00
New Revision: 03ba8c83dd42292125fdbc74657a76388ab9558e

URL: https://github.com/llvm/llvm-project/commit/03ba8c83dd42292125fdbc74657a76388ab9558e
DIFF: https://github.com/llvm/llvm-project/commit/03ba8c83dd42292125fdbc74657a76388ab9558e.diff

LOG: [Debuginfod] Fix shared libs build break after eafa0530417e

The commit added a dependency on LLVMSymbolize but the
CMakeLists.txt file wasn't updated. This doesn't cause
issues for static libraries builds but breaks the shared
libraries build. This just adds the missing dependency.

Added: 
    

Modified: 
    llvm/tools/llvm-debuginfod-find/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-debuginfod-find/CMakeLists.txt b/llvm/tools/llvm-debuginfod-find/CMakeLists.txt
index b8233e70ab1a1..a0455604c04cc 100644
--- a/llvm/tools/llvm-debuginfod-find/CMakeLists.txt
+++ b/llvm/tools/llvm-debuginfod-find/CMakeLists.txt
@@ -1,5 +1,6 @@
 set(LLVM_LINK_COMPONENTS
   Support
+  Symbolize
   )
 add_llvm_tool(llvm-debuginfod-find
   llvm-debuginfod-find.cpp


        


More information about the llvm-commits mailing list