diff options
Diffstat (limited to 'docs/tutorial/BuildingAJIT5.rst')
| -rw-r--r-- | docs/tutorial/BuildingAJIT5.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/tutorial/BuildingAJIT5.rst b/docs/tutorial/BuildingAJIT5.rst index 94ea92ce5ad2..0fda8610efbf 100644 --- a/docs/tutorial/BuildingAJIT5.rst +++ b/docs/tutorial/BuildingAJIT5.rst @@ -40,8 +40,10 @@ Kaleidoscope ASTS. To build this example, use: .. code-block:: bash # Compile - clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orc native` -O3 -o toy + clang++ -g toy.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native` -O3 -o toy + clang++ -g Server/server.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core orcjit native` -O3 -o toy-server # Run + ./toy-server & ./toy Here is the code for the modified KaleidoscopeJIT: |
