diff options
author | Chris Bieneman <beanz@apple.com> | 2016-11-19 02:05:19 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-11-19 02:05:19 +0000 |
commit | 3bd0191c5b8c109eb75ec092cdd6b3faff34065f (patch) | |
tree | 7e68457ea913587bf823b1b701d6ed1b90a72f84 /llvm/tools | |
parent | d22fa5091c40a57fa628031936cf7b41b58c1da0 (diff) | |
download | bcm5719-llvm-3bd0191c5b8c109eb75ec092cdd6b3faff34065f.tar.gz bcm5719-llvm-3bd0191c5b8c109eb75ec092cdd6b3faff34065f.zip |
[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
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/lli/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/lli/CMakeLists.txt b/llvm/tools/lli/CMakeLists.txt index 2bdd066eb7a..1ecbfffcc4f 100644 --- a/llvm/tools/lli/CMakeLists.txt +++ b/llvm/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) |