[llvm] 209bebc - Try to fix shared lib buildbot failures after 36f01909a0e2 (D114846)

Noah Shutty via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 7 11:48:52 PDT 2022


Author: Noah Shutty
Date: 2022-07-07T18:48:45Z
New Revision: 209bebc2b612b0d524999f8649ebdcefd0efe6c7

URL: https://github.com/llvm/llvm-project/commit/209bebc2b612b0d524999f8649ebdcefd0efe6c7
DIFF: https://github.com/llvm/llvm-project/commit/209bebc2b612b0d524999f8649ebdcefd0efe6c7.diff

LOG: Try to fix shared lib buildbot failures after 36f01909a0e2 (D114846)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-debuginfod/CMakeLists.txt b/llvm/tools/llvm-debuginfod/CMakeLists.txt
index b02aec56355fe..72f2c19848489 100644
--- a/llvm/tools/llvm-debuginfod/CMakeLists.txt
+++ b/llvm/tools/llvm-debuginfod/CMakeLists.txt
@@ -1,10 +1,10 @@
 set(LLVM_LINK_COMPONENTS
-  Debuginfod
   Support
   )
 add_llvm_tool(llvm-debuginfod
   llvm-debuginfod.cpp
   )
+target_link_libraries(llvm-debuginfod PRIVATE LLVMDebuginfod)
 if(LLVM_INSTALL_BINUTILS_SYMLINKS)
   add_llvm_tool_symlink(debuginfod llvm-debuginfod)
 endif()


        


More information about the llvm-commits mailing list