[llvm] r223677 - Attempt to fix the cmake build by requiring mcjit on the cmake
Eric Christopher
echristo at gmail.com
Mon Dec 8 10:20:50 PST 2014
Author: echristo
Date: Mon Dec 8 12:20:50 2014
New Revision: 223677
URL: http://llvm.org/viewvc/llvm-project?rev=223677&view=rev
Log:
Attempt to fix the cmake build by requiring mcjit on the cmake
dependencies for the KS tutorials
Modified:
llvm/trunk/examples/Kaleidoscope/Chapter4/CMakeLists.txt
llvm/trunk/examples/Kaleidoscope/Chapter5/CMakeLists.txt
llvm/trunk/examples/Kaleidoscope/Chapter6/CMakeLists.txt
llvm/trunk/examples/Kaleidoscope/Chapter7/CMakeLists.txt
llvm/trunk/examples/Kaleidoscope/Chapter8/CMakeLists.txt
Modified: llvm/trunk/examples/Kaleidoscope/Chapter4/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter4/CMakeLists.txt?rev=223677&r1=223676&r2=223677&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter4/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter4/CMakeLists.txt Mon Dec 8 12:20:50 2014
@@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS
ScalarOpts
Support
nativecodegen
+ mcjit
)
add_llvm_example(Kaleidoscope-Ch4
Modified: llvm/trunk/examples/Kaleidoscope/Chapter5/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter5/CMakeLists.txt?rev=223677&r1=223676&r2=223677&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter5/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter5/CMakeLists.txt Mon Dec 8 12:20:50 2014
@@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS
ScalarOpts
Support
nativecodegen
+ mcjit
)
add_llvm_example(Kaleidoscope-Ch5
Modified: llvm/trunk/examples/Kaleidoscope/Chapter6/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter6/CMakeLists.txt?rev=223677&r1=223676&r2=223677&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter6/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter6/CMakeLists.txt Mon Dec 8 12:20:50 2014
@@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS
ScalarOpts
Support
nativecodegen
+ mcjit
)
add_llvm_example(Kaleidoscope-Ch6
Modified: llvm/trunk/examples/Kaleidoscope/Chapter7/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter7/CMakeLists.txt?rev=223677&r1=223676&r2=223677&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter7/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter7/CMakeLists.txt Mon Dec 8 12:20:50 2014
@@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS
Support
TransformUtils
nativecodegen
+ mcjit
)
set(LLVM_REQUIRES_RTTI 1)
Modified: llvm/trunk/examples/Kaleidoscope/Chapter8/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter8/CMakeLists.txt?rev=223677&r1=223676&r2=223677&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter8/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter8/CMakeLists.txt Mon Dec 8 12:20:50 2014
@@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS
Support
TransformUtils
nativecodegen
+ mcjit
)
set(LLVM_REQUIRES_RTTI 1)
More information about the llvm-commits
mailing list