Fix configure and make build of llvm examples.
authorIain Sandoe <iain@codesourcery.com>
Wed, 3 Sep 2014 13:12:16 +0000 (13:12 +0000)
committerIain Sandoe <iain@codesourcery.com>
Wed, 3 Sep 2014 13:12:16 +0000 (13:12 +0000)
Replaced link component 'jit' with 'mcjit'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217032 91177308-0d34-0410-b5e6-96231b3b80d8

examples/BrainF/Makefile
examples/ExceptionDemo/Makefile
examples/Fibonacci/Makefile
examples/HowToUseJIT/Makefile
examples/Kaleidoscope/Chapter4/Makefile
examples/Kaleidoscope/Chapter5/Makefile
examples/Kaleidoscope/Chapter6/Makefile
examples/Kaleidoscope/Chapter7/Makefile
examples/ParallelJIT/Makefile

index 2c3e0662523d4fe97f5190ed3fc4d2e2a9455c63..3e36e0761758d6920715cf03f076c7e821012e3f 100644 (file)
@@ -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
index 58d9def0b7eea2d33e874011f80d705f1e6ddcc2..895b61dafcd3c8fff2029ce0eff01deb9bcc1841 100644 (file)
@@ -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
index 71f6ba0ef52ed18e891f8f4112e984661391c232..c99110a2211996c42a0569b28b5851be1f341a60 100644 (file)
@@ -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
index c8919db90cc2e1f18b44a08b547e4b7344112276..26a25a12bf23af3fef25c3eabd955bf381a5c291 100644 (file)
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = HowToUseJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common
index 30162d94bcee4f63d61af02c3e3558ec4e10e1aa..6d6a6706fff3e841935e5d6657235e891dd8b471 100644 (file)
@@ -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
index d1f5e2035b46486c95c60395642391d20f2e0583..d7809672303e8cf55d27a1d625ae5871458dc139 100644 (file)
@@ -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
index a5fbcbdf9b2baa2c072e9d615faa59819ae71c4d..8f47ea0d98e79a4228d35cfe45681bfc1eb561bf 100644 (file)
@@ -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
index 6cec323efd402f4c8c858df8e42268ce4703831f..7abeb3e5b67ce544644166fc7650a7990f7b4ded 100644 (file)
@@ -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
index 8a49d4273132a192b494307bbd9b13f88ee1661a..0f2a3575f76c737400458e726f1141785fbd7728 100644 (file)
@@ -10,7 +10,7 @@ LEVEL = ../..
 TOOLNAME = ParallelJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common