From: Michael J. Spencer Date: Mon, 14 Oct 2019 21:53:51 +0000 (+0000) Subject: [Modules Build] Add missing dependency. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e122082aec0233446f11b4248ac3ae802b2cce8a;p=llvm [Modules Build] Add missing dependency. A previous commit made libLLVMDebugInfoDWARF depend on the LLVM_Bitcode module which depends on the LLVM_intrinsic_gen module which depends onĀ "llvm/IR/Attributes.inc" which is a generated header not depended on by libLLVMDebugInfo. Add that dependency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374827 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/DWARF/CMakeLists.txt b/lib/DebugInfo/DWARF/CMakeLists.txt index b4770e561f7..6b53a5a1725 100644 --- a/lib/DebugInfo/DWARF/CMakeLists.txt +++ b/lib/DebugInfo/DWARF/CMakeLists.txt @@ -30,4 +30,7 @@ add_llvm_library(LLVMDebugInfoDWARF ADDITIONAL_HEADER_DIRS ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/DWARF ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo + + DEPENDS + intrinsics_gen )