[llvm] e8e97b2 - Fix buildbots that create shared libraries from GSYM library by adding a dependency on LLVMDebugInfoDWARF.

Greg Clayton via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 13 11:43:48 PST 2020


Author: Greg Clayton
Date: 2020-02-13T11:43:07-08:00
New Revision: e8e97b28cd8eab836375603b5cae97696248c9b6

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

LOG: Fix buildbots that create shared libraries from GSYM library by adding a dependency on LLVMDebugInfoDWARF.

Added: 
    

Modified: 
    llvm/lib/DebugInfo/GSYM/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/lib/DebugInfo/GSYM/CMakeLists.txt b/llvm/lib/DebugInfo/GSYM/CMakeLists.txt
index 6c1167807d3f..a33b5ce59ea1 100644
--- a/llvm/lib/DebugInfo/GSYM/CMakeLists.txt
+++ b/llvm/lib/DebugInfo/GSYM/CMakeLists.txt
@@ -1,3 +1,7 @@
+set(LLVM_LINK_COMPONENTS
+  DebugInfoDWARF
+  )
+
 add_llvm_component_library(LLVMDebugInfoGSYM
   DwarfTransformer.cpp
   Header.cpp


        


More information about the llvm-commits mailing list