summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-11-19 02:05:19 +0000
committerChris Bieneman <beanz@apple.com>2016-11-19 02:05:19 +0000
commit2eb4133a3868ce2da1b8645f5052813c717b77da (patch)
tree48a7dd9b12b195d2084f6d6400e2f7f516d7a2ce /tools/lli
parent6f60be5bfa40b80457af1f0b2211f62dc3dde3f8 (diff)
[CMake] lli depends on intrinsics_gen
ChildTarget.cpp has the following include chain: llvm/ExecutionEngine/Orc/OrcABISupport.h llvm/ExecutionEngine/Orc/IndirectionUtils.h llvm/IR/IRBuilder.h llvm/IR/ConstantFolder.h llvm/IR/InstrTypes.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means lli needs to depend on intrinsics_gen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/lli/CMakeLists.txt b/tools/lli/CMakeLists.txt
index 2bdd066eb7a..1ecbfffcc4f 100644
--- a/tools/lli/CMakeLists.txt
+++ b/tools/lli/CMakeLists.txt
@@ -40,5 +40,8 @@ endif( LLVM_USE_INTEL_JITEVENTS )
add_llvm_tool(lli
lli.cpp
OrcLazyJIT.cpp
+
+ DEPENDS
+ intrinsics_gen
)
export_executable_symbols(lli)