Commit ce0b6d5a by Hideto Ueno Committed by masahi

[DOCS] Mention Ninja build system in install/from_source.rst (#4554)

* [DOCS] Mention Ninja build system in install/from_source.rst

* Address comments
parent 5d328c5c
...@@ -107,6 +107,14 @@ The configuration of TVM can be modified by `config.cmake`. ...@@ -107,6 +107,14 @@ The configuration of TVM can be modified by `config.cmake`.
cmake .. cmake ..
make -j4 make -j4
- You can also use Ninja build system instead of Unix Makefiles. It can be faster to build than using Makefiles.
.. code:: bash
cd build
cmake .. -G Ninja
ninja
If everything goes well, we can go to :ref:`python-package-installation` If everything goes well, we can go to :ref:`python-package-installation`
Building on Windows Building on Windows
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment