Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
Dec 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/install/from_source.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,14 @@ The configuration of TVM can be modified by `config.cmake`.
cmake ..
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`

Building on Windows
Expand Down