diff options
author | Eric Christopher <echristo@gmail.com> | 2015-01-08 19:07:01 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-01-08 19:07:01 +0000 |
commit | a8c6a0a03f603a911e471665565bfcdc6fb5eb0e (patch) | |
tree | c5a793bcaadde2860d753d0e2a647b6ac9851a9f /llvm/docs | |
parent | 021eaef04403b480ccd1e3aefb2c32875fcd6342 (diff) | |
download | bcm5719-llvm-a8c6a0a03f603a911e471665565bfcdc6fb5eb0e.tar.gz bcm5719-llvm-a8c6a0a03f603a911e471665565bfcdc6fb5eb0e.zip |
The Kaleidoscope tutorial should be using "mcjit" for the library,
"jit" doesn't exist anymore.
llvm-svn: 225462
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/tutorial/LangImpl4.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/LangImpl5.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/LangImpl6.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/LangImpl7.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/LangImpl8.rst | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/llvm/docs/tutorial/LangImpl4.rst b/llvm/docs/tutorial/LangImpl4.rst index aa469ca1e7c..cdaac634dd7 100644 --- a/llvm/docs/tutorial/LangImpl4.rst +++ b/llvm/docs/tutorial/LangImpl4.rst @@ -428,7 +428,7 @@ the LLVM JIT and optimizer. To build this example, use: .. 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 diff --git a/llvm/docs/tutorial/LangImpl5.rst b/llvm/docs/tutorial/LangImpl5.rst index 2a3a4ce0c8d..72e34b1c9cd 100644 --- a/llvm/docs/tutorial/LangImpl5.rst +++ b/llvm/docs/tutorial/LangImpl5.rst @@ -736,7 +736,7 @@ the if/then/else and for expressions.. To build this example, use: .. 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 diff --git a/llvm/docs/tutorial/LangImpl6.rst b/llvm/docs/tutorial/LangImpl6.rst index cdceb03fb92..bf78bdea74d 100644 --- a/llvm/docs/tutorial/LangImpl6.rst +++ b/llvm/docs/tutorial/LangImpl6.rst @@ -729,7 +729,7 @@ the if/then/else and for expressions.. To build this example, use: .. 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 diff --git a/llvm/docs/tutorial/LangImpl7.rst b/llvm/docs/tutorial/LangImpl7.rst index c4c7233c6a3..141f1389630 100644 --- a/llvm/docs/tutorial/LangImpl7.rst +++ b/llvm/docs/tutorial/LangImpl7.rst @@ -847,7 +847,7 @@ mutable variables and var/in support. To build this example, use: .. 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 diff --git a/llvm/docs/tutorial/LangImpl8.rst b/llvm/docs/tutorial/LangImpl8.rst index 89344cc82a2..7b02468180f 100644 --- a/llvm/docs/tutorial/LangImpl8.rst +++ b/llvm/docs/tutorial/LangImpl8.rst @@ -446,7 +446,7 @@ debug information. To build this example, use: .. 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 |