The Kaleidoscope tutorial should be using "mcjit" for the library,
authorEric Christopher <echristo@gmail.com>
Thu, 8 Jan 2015 19:07:01 +0000 (19:07 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 8 Jan 2015 19:07:01 +0000 (19:07 +0000)
"jit" doesn't exist anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225462 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl4.rst
docs/tutorial/LangImpl5.rst
docs/tutorial/LangImpl6.rst
docs/tutorial/LangImpl7.rst
docs/tutorial/LangImpl8.rst

index aa469ca1e7c6a6b4e91a6ce3757d410531acc80f..cdaac634dd7685bb4bf78c5e9d49380ef05e1053 100644 (file)
@@ -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
 
index 2a3a4ce0c8dd1575d8cce571ff2070256857d5de..72e34b1c9cdd34431951f130ccd6b38f2907d364 100644 (file)
@@ -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
 
index cdceb03fb92eba44c465a001ba2c9099aa26d790..bf78bdea74d6e74cbcfd88f765b42560e889743e 100644 (file)
@@ -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
 
index c4c7233c6a3dc32079c02111d684809c5bbdeb11..141f1389630fe709504d30646ce22588b6e3a70e 100644 (file)
@@ -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
 
index 89344cc82a2d3cdb7296d5d7822af4274e0fdea8..7b02468180f5c8363a462dc6876fc70972a3266d 100644 (file)
@@ -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