[llvm] r374827 - [Modules Build] Add missing dependency.
Michael J. Spencer via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 14 14:53:52 PDT 2019
Author: mspencer
Date: Mon Oct 14 14:53:51 2019
New Revision: 374827
URL: http://llvm.org/viewvc/llvm-project?rev=374827&view=rev
Log:
[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.
Modified:
llvm/trunk/lib/DebugInfo/DWARF/CMakeLists.txt
Modified: llvm/trunk/lib/DebugInfo/DWARF/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARF/CMakeLists.txt?rev=374827&r1=374826&r2=374827&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARF/CMakeLists.txt (original)
+++ llvm/trunk/lib/DebugInfo/DWARF/CMakeLists.txt Mon Oct 14 14:53:51 2019
@@ -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
)
More information about the llvm-commits
mailing list