forked from OSchip/llvm-project
The Kaleidoscope tutorial should be using "mcjit" for the library,
"jit" doesn't exist anymore. llvm-svn: 225462
This commit is contained in:
parent
021eaef044
commit
a8c6a0a03f
|
@ -428,7 +428,7 @@ the LLVM JIT and optimizer. To build this example, use:
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
# Compile
|
# 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
|
# Run
|
||||||
./toy
|
./toy
|
||||||
|
|
||||||
|
|
|
@ -736,7 +736,7 @@ the if/then/else and for expressions.. To build this example, use:
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
# Compile
|
# 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
|
# Run
|
||||||
./toy
|
./toy
|
||||||
|
|
||||||
|
|
|
@ -729,7 +729,7 @@ the if/then/else and for expressions.. To build this example, use:
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
# Compile
|
# 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
|
# Run
|
||||||
./toy
|
./toy
|
||||||
|
|
||||||
|
|
|
@ -847,7 +847,7 @@ mutable variables and var/in support. To build this example, use:
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
# Compile
|
# 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
|
# Run
|
||||||
./toy
|
./toy
|
||||||
|
|
||||||
|
|
|
@ -446,7 +446,7 @@ debug information. To build this example, use:
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
# Compile
|
# 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
|
# Run
|
||||||
./toy
|
./toy
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue