[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.

llvm-svn: 287420
This commit is contained in:
Chris Bieneman 2016-11-19 02:05:19 +00:00
parent d22fa5091c
commit 3bd0191c5b
1 changed files with 3 additions and 0 deletions

View File

@ -40,5 +40,8 @@ endif( LLVM_USE_INTEL_JITEVENTS )
add_llvm_tool(lli
lli.cpp
OrcLazyJIT.cpp
DEPENDS
intrinsics_gen
)
export_executable_symbols(lli)