From: Michael J. Spencer Date: Mon, 14 Oct 2019 21:53:51 +0000 (+0000) Subject: [Modules Build] Add missing dependency. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9585d8c11a57f1d5038465ab8f90461c701053fb;p=platform%2Fupstream%2Fllvm.git [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. llvm-svn: 374827 --- diff --git a/llvm/lib/DebugInfo/DWARF/CMakeLists.txt b/llvm/lib/DebugInfo/DWARF/CMakeLists.txt index b4770e5..6b53a5a 100644 --- a/llvm/lib/DebugInfo/DWARF/CMakeLists.txt +++ b/llvm/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 )