<div dir="ltr">Thanks very much for fixing this!<div><br></div><div>- Lang.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 8, 2015 at 11:07 AM, Eric Christopher <span dir="ltr"><<a href="mailto:echristo@gmail.com" target="_blank">echristo@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: echristo<br>
Date: Thu Jan  8 13:07:01 2015<br>
New Revision: 225462<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=225462&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=225462&view=rev</a><br>
Log:<br>
The Kaleidoscope tutorial should be using "mcjit" for the library,<br>
"jit" doesn't exist anymore.<br>
<br>
Modified:<br>
    llvm/trunk/docs/tutorial/LangImpl4.rst<br>
    llvm/trunk/docs/tutorial/LangImpl5.rst<br>
    llvm/trunk/docs/tutorial/LangImpl6.rst<br>
    llvm/trunk/docs/tutorial/LangImpl7.rst<br>
    llvm/trunk/docs/tutorial/LangImpl8.rst<br>
<br>
Modified: llvm/trunk/docs/tutorial/LangImpl4.rst<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl4.rst?rev=225462&r1=225461&r2=225462&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl4.rst?rev=225462&r1=225461&r2=225462&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/docs/tutorial/LangImpl4.rst (original)<br>
+++ llvm/trunk/docs/tutorial/LangImpl4.rst Thu Jan  8 13:07:01 2015<br>
@@ -428,7 +428,7 @@ the LLVM JIT and optimizer. To build thi<br>
 .. code-block:: bash<br>
<br>
     # Compile<br>
-    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core jit native` -O3 -o toy<br>
+    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native` -O3 -o toy<br>
     # Run<br>
     ./toy<br>
<br>
<br>
Modified: llvm/trunk/docs/tutorial/LangImpl5.rst<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl5.rst?rev=225462&r1=225461&r2=225462&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl5.rst?rev=225462&r1=225461&r2=225462&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/docs/tutorial/LangImpl5.rst (original)<br>
+++ llvm/trunk/docs/tutorial/LangImpl5.rst Thu Jan  8 13:07:01 2015<br>
@@ -736,7 +736,7 @@ the if/then/else and for expressions.. T<br>
 .. code-block:: bash<br>
<br>
     # Compile<br>
-    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core jit native` -O3 -o toy<br>
+    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native` -O3 -o toy<br>
     # Run<br>
     ./toy<br>
<br>
<br>
Modified: llvm/trunk/docs/tutorial/LangImpl6.rst<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl6.rst?rev=225462&r1=225461&r2=225462&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl6.rst?rev=225462&r1=225461&r2=225462&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/docs/tutorial/LangImpl6.rst (original)<br>
+++ llvm/trunk/docs/tutorial/LangImpl6.rst Thu Jan  8 13:07:01 2015<br>
@@ -729,7 +729,7 @@ the if/then/else and for expressions.. T<br>
 .. code-block:: bash<br>
<br>
     # Compile<br>
-    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core jit native` -O3 -o toy<br>
+    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native` -O3 -o toy<br>
     # Run<br>
     ./toy<br>
<br>
<br>
Modified: llvm/trunk/docs/tutorial/LangImpl7.rst<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl7.rst?rev=225462&r1=225461&r2=225462&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl7.rst?rev=225462&r1=225461&r2=225462&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/docs/tutorial/LangImpl7.rst (original)<br>
+++ llvm/trunk/docs/tutorial/LangImpl7.rst Thu Jan  8 13:07:01 2015<br>
@@ -847,7 +847,7 @@ mutable variables and var/in support. To<br>
 .. code-block:: bash<br>
<br>
     # Compile<br>
-    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core jit native` -O3 -o toy<br>
+    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native` -O3 -o toy<br>
     # Run<br>
     ./toy<br>
<br>
<br>
Modified: llvm/trunk/docs/tutorial/LangImpl8.rst<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl8.rst?rev=225462&r1=225461&r2=225462&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl8.rst?rev=225462&r1=225461&r2=225462&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/docs/tutorial/LangImpl8.rst (original)<br>
+++ llvm/trunk/docs/tutorial/LangImpl8.rst Thu Jan  8 13:07:01 2015<br>
@@ -446,7 +446,7 @@ debug information. To build this example<br>
 .. code-block:: bash<br>
<br>
     # Compile<br>
-    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core jit native` -O3 -o toy<br>
+    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native` -O3 -o toy<br>
     # Run<br>
     ./toy<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>