[llvm] r217032 - Fix configure and make build of llvm examples.

Iain Sandoe iain at codesourcery.com
Wed Sep 3 06:12:16 PDT 2014


Author: iains
Date: Wed Sep  3 08:12:16 2014
New Revision: 217032

URL: http://llvm.org/viewvc/llvm-project?rev=217032&view=rev
Log:
Fix configure and make build of llvm examples.

Replaced link component 'jit' with 'mcjit'.



Modified:
    llvm/trunk/examples/BrainF/Makefile
    llvm/trunk/examples/ExceptionDemo/Makefile
    llvm/trunk/examples/Fibonacci/Makefile
    llvm/trunk/examples/HowToUseJIT/Makefile
    llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile
    llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile
    llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile
    llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile
    llvm/trunk/examples/ParallelJIT/Makefile

Modified: llvm/trunk/examples/BrainF/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/BrainF/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/BrainF/Makefile (original)
+++ llvm/trunk/examples/BrainF/Makefile Wed Sep  3 08:12:16 2014
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = BrainF
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
+LINK_COMPONENTS := mcjit bitwriter nativecodegen interpreter
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/ExceptionDemo/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ExceptionDemo/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/ExceptionDemo/Makefile (original)
+++ llvm/trunk/examples/ExceptionDemo/Makefile Wed Sep  3 08:12:16 2014
@@ -11,6 +11,6 @@ TOOLNAME = ExceptionDemo
 EXAMPLE_TOOL = 1
 REQUIRES_EH = 1
 
-LINK_COMPONENTS := jit mcjit nativecodegen
+LINK_COMPONENTS := mcjit nativecodegen
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/Fibonacci/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Fibonacci/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/Fibonacci/Makefile (original)
+++ llvm/trunk/examples/Fibonacci/Makefile Wed Sep  3 08:12:16 2014
@@ -12,6 +12,6 @@ TOOLNAME = Fibonacci
 EXAMPLE_TOOL = 1
 
 # Link in JIT support
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := interpreter mcjit nativecodegen
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/HowToUseJIT/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/HowToUseJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/HowToUseJIT/Makefile (original)
+++ llvm/trunk/examples/HowToUseJIT/Makefile Wed Sep  3 08:12:16 2014
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = HowToUseJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile Wed Sep  3 08:12:16 2014
@@ -10,6 +10,6 @@ LEVEL = ../../..
 TOOLNAME = Kaleidoscope-Ch4
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile Wed Sep  3 08:12:16 2014
@@ -10,6 +10,6 @@ LEVEL = ../../..
 TOOLNAME = Kaleidoscope-Ch5
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile Wed Sep  3 08:12:16 2014
@@ -10,6 +10,6 @@ LEVEL = ../../..
 TOOLNAME = Kaleidoscope-Ch6
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile (original)
+++ llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile Wed Sep  3 08:12:16 2014
@@ -11,6 +11,6 @@ TOOLNAME = Kaleidoscope-Ch7
 EXAMPLE_TOOL = 1
 REQUIRES_RTTI := 1
 
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
 
 include $(LEVEL)/Makefile.common

Modified: llvm/trunk/examples/ParallelJIT/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ParallelJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff
==============================================================================
--- llvm/trunk/examples/ParallelJIT/Makefile (original)
+++ llvm/trunk/examples/ParallelJIT/Makefile Wed Sep  3 08:12:16 2014
@@ -10,7 +10,7 @@ LEVEL = ../..
 TOOLNAME = ParallelJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common
 





More information about the llvm-commits mailing list