diff options
author | Eric Christopher <echristo@gmail.com> | 2014-12-08 18:20:50 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-12-08 18:20:50 +0000 |
commit | 3760e8457d0e080e3d4f93b59d7a27accfe70751 (patch) | |
tree | 2b258aeb9f8218dbe2160bf5d9994afc9a22534d | |
parent | 27de9b0f7001d3da9423e3e9b7b17565a38c1b51 (diff) | |
download | bcm5719-llvm-3760e8457d0e080e3d4f93b59d7a27accfe70751.tar.gz bcm5719-llvm-3760e8457d0e080e3d4f93b59d7a27accfe70751.zip |
Attempt to fix the cmake build by requiring mcjit on the cmake
dependencies for the KS tutorials
llvm-svn: 223677
5 files changed, 5 insertions, 0 deletions
diff --git a/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt b/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt index 2f828dc819e..46067d99731 100644 --- a/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt @@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS ScalarOpts Support nativecodegen + mcjit ) add_llvm_example(Kaleidoscope-Ch4 diff --git a/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt b/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt index 1912ddc0741..138cf0c0969 100644 --- a/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt @@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS ScalarOpts Support nativecodegen + mcjit ) add_llvm_example(Kaleidoscope-Ch5 diff --git a/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt b/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt index d36f03090e5..af24377c761 100644 --- a/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt @@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS ScalarOpts Support nativecodegen + mcjit ) add_llvm_example(Kaleidoscope-Ch6 diff --git a/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt b/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt index bdc0e5525db..304c94ba5a2 100644 --- a/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt @@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS Support TransformUtils nativecodegen + mcjit ) set(LLVM_REQUIRES_RTTI 1) diff --git a/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt b/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt index 053916f441d..a09c6bee8b5 100644 --- a/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt @@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS Support TransformUtils nativecodegen + mcjit ) set(LLVM_REQUIRES_RTTI 1) |