<div dir="ltr">Thanks Iain!<div><br></div><div>-eric</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Sep 3, 2014 at 6:12 AM, Iain Sandoe <span dir="ltr"><<a href="mailto:iain@codesourcery.com" target="_blank">iain@codesourcery.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: iains<br>
Date: Wed Sep 3 08:12:16 2014<br>
New Revision: 217032<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=217032&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=217032&view=rev</a><br>
Log:<br>
Fix configure and make build of llvm examples.<br>
<br>
Replaced link component 'jit' with 'mcjit'.<br>
<br>
<br>
<br>
Modified:<br>
llvm/trunk/examples/BrainF/Makefile<br>
llvm/trunk/examples/ExceptionDemo/Makefile<br>
llvm/trunk/examples/Fibonacci/Makefile<br>
llvm/trunk/examples/HowToUseJIT/Makefile<br>
llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile<br>
llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile<br>
llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile<br>
llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile<br>
llvm/trunk/examples/ParallelJIT/Makefile<br>
<br>
Modified: llvm/trunk/examples/BrainF/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/BrainF/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/BrainF/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/BrainF/Makefile (original)<br>
+++ llvm/trunk/examples/BrainF/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,6 +10,6 @@ LEVEL = ../..<br>
TOOLNAME = BrainF<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := jit bitwriter nativecodegen interpreter<br>
+LINK_COMPONENTS := mcjit bitwriter nativecodegen interpreter<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/ExceptionDemo/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ExceptionDemo/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ExceptionDemo/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/ExceptionDemo/Makefile (original)<br>
+++ llvm/trunk/examples/ExceptionDemo/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -11,6 +11,6 @@ TOOLNAME = ExceptionDemo<br>
EXAMPLE_TOOL = 1<br>
REQUIRES_EH = 1<br>
<br>
-LINK_COMPONENTS := jit mcjit nativecodegen<br>
+LINK_COMPONENTS := mcjit nativecodegen<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/Fibonacci/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Fibonacci/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Fibonacci/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/Fibonacci/Makefile (original)<br>
+++ llvm/trunk/examples/Fibonacci/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -12,6 +12,6 @@ TOOLNAME = Fibonacci<br>
EXAMPLE_TOOL = 1<br>
<br>
# Link in JIT support<br>
-LINK_COMPONENTS := jit interpreter nativecodegen<br>
+LINK_COMPONENTS := interpreter mcjit nativecodegen<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/HowToUseJIT/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/HowToUseJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/HowToUseJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/HowToUseJIT/Makefile (original)<br>
+++ llvm/trunk/examples/HowToUseJIT/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,6 +10,6 @@ LEVEL = ../..<br>
TOOLNAME = HowToUseJIT<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := jit interpreter nativecodegen<br>
+LINK_COMPONENTS := mcjit interpreter nativecodegen<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile (original)<br>
+++ llvm/trunk/examples/Kaleidoscope/Chapter4/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,6 +10,6 @@ LEVEL = ../../..<br>
TOOLNAME = Kaleidoscope-Ch4<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := core jit native<br>
+LINK_COMPONENTS := core mcjit native<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile (original)<br>
+++ llvm/trunk/examples/Kaleidoscope/Chapter5/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,6 +10,6 @@ LEVEL = ../../..<br>
TOOLNAME = Kaleidoscope-Ch5<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := core jit native<br>
+LINK_COMPONENTS := core mcjit native<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile (original)<br>
+++ llvm/trunk/examples/Kaleidoscope/Chapter6/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,6 +10,6 @@ LEVEL = ../../..<br>
TOOLNAME = Kaleidoscope-Ch6<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := core jit native<br>
+LINK_COMPONENTS := core mcjit native<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile (original)<br>
+++ llvm/trunk/examples/Kaleidoscope/Chapter7/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -11,6 +11,6 @@ TOOLNAME = Kaleidoscope-Ch7<br>
EXAMPLE_TOOL = 1<br>
REQUIRES_RTTI := 1<br>
<br>
-LINK_COMPONENTS := core jit native<br>
+LINK_COMPONENTS := core mcjit native<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
Modified: llvm/trunk/examples/ParallelJIT/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ParallelJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ParallelJIT/Makefile?rev=217032&r1=217031&r2=217032&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/examples/ParallelJIT/Makefile (original)<br>
+++ llvm/trunk/examples/ParallelJIT/Makefile Wed Sep 3 08:12:16 2014<br>
@@ -10,7 +10,7 @@ LEVEL = ../..<br>
TOOLNAME = ParallelJIT<br>
EXAMPLE_TOOL = 1<br>
<br>
-LINK_COMPONENTS := jit interpreter nativecodegen<br>
+LINK_COMPONENTS := mcjit interpreter nativecodegen<br>
<br>
include $(LEVEL)/Makefile.common<br>
<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div>