[llvm] r225462 - The Kaleidoscope tutorial should be using "mcjit" for the library,

Lang Hames lhames at gmail.com
Fri Jan 9 11:59:12 PST 2015


Thanks very much for fixing this!

- Lang.

On Thu, Jan 8, 2015 at 11:07 AM, Eric Christopher <echristo at gmail.com>
wrote:

> Author: echristo
> Date: Thu Jan  8 13:07:01 2015
> New Revision: 225462
>
> URL: http://llvm.org/viewvc/llvm-project?rev=225462&view=rev
> Log:
> The Kaleidoscope tutorial should be using "mcjit" for the library,
> "jit" doesn't exist anymore.
>
> Modified:
>     llvm/trunk/docs/tutorial/LangImpl4.rst
>     llvm/trunk/docs/tutorial/LangImpl5.rst
>     llvm/trunk/docs/tutorial/LangImpl6.rst
>     llvm/trunk/docs/tutorial/LangImpl7.rst
>     llvm/trunk/docs/tutorial/LangImpl8.rst
>
> Modified: llvm/trunk/docs/tutorial/LangImpl4.rst
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl4.rst?rev=225462&r1=225461&r2=225462&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/tutorial/LangImpl4.rst (original)
> +++ llvm/trunk/docs/tutorial/LangImpl4.rst Thu Jan  8 13:07:01 2015
> @@ -428,7 +428,7 @@ the LLVM JIT and optimizer. To build thi
>  .. code-block:: bash
>
>      # Compile
> -    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core jit native` -O3 -o toy
> +    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core mcjit native` -O3 -o toy
>      # Run
>      ./toy
>
>
> Modified: llvm/trunk/docs/tutorial/LangImpl5.rst
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl5.rst?rev=225462&r1=225461&r2=225462&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/tutorial/LangImpl5.rst (original)
> +++ llvm/trunk/docs/tutorial/LangImpl5.rst Thu Jan  8 13:07:01 2015
> @@ -736,7 +736,7 @@ the if/then/else and for expressions.. T
>  .. code-block:: bash
>
>      # Compile
> -    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core jit native` -O3 -o toy
> +    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core mcjit native` -O3 -o toy
>      # Run
>      ./toy
>
>
> Modified: llvm/trunk/docs/tutorial/LangImpl6.rst
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl6.rst?rev=225462&r1=225461&r2=225462&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/tutorial/LangImpl6.rst (original)
> +++ llvm/trunk/docs/tutorial/LangImpl6.rst Thu Jan  8 13:07:01 2015
> @@ -729,7 +729,7 @@ the if/then/else and for expressions.. T
>  .. code-block:: bash
>
>      # Compile
> -    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core jit native` -O3 -o toy
> +    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core mcjit native` -O3 -o toy
>      # Run
>      ./toy
>
>
> Modified: llvm/trunk/docs/tutorial/LangImpl7.rst
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl7.rst?rev=225462&r1=225461&r2=225462&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/tutorial/LangImpl7.rst (original)
> +++ llvm/trunk/docs/tutorial/LangImpl7.rst Thu Jan  8 13:07:01 2015
> @@ -847,7 +847,7 @@ mutable variables and var/in support. To
>  .. code-block:: bash
>
>      # Compile
> -    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core jit native` -O3 -o toy
> +    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core mcjit native` -O3 -o toy
>      # Run
>      ./toy
>
>
> Modified: llvm/trunk/docs/tutorial/LangImpl8.rst
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl8.rst?rev=225462&r1=225461&r2=225462&view=diff
>
> ==============================================================================
> --- llvm/trunk/docs/tutorial/LangImpl8.rst (original)
> +++ llvm/trunk/docs/tutorial/LangImpl8.rst Thu Jan  8 13:07:01 2015
> @@ -446,7 +446,7 @@ debug information. To build this example
>  .. code-block:: bash
>
>      # Compile
> -    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core jit native` -O3 -o toy
> +    clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs
> --libs core mcjit native` -O3 -o toy
>      # Run
>      ./toy
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150109/045e1eca/attachment.html>


More information about the llvm-commits mailing list