From ce0b6d5adcd5e3b0fd6b4e7d2326f16b5c5ca5b8 Mon Sep 17 00:00:00 2001 From: Hideto Ueno Date: Fri, 20 Dec 2019 18:25:18 +0900 Subject: [PATCH] [DOCS] Mention Ninja build system in install/from_source.rst (#4554) * [DOCS] Mention Ninja build system in install/from_source.rst * Address comments --- docs/install/from_source.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/install/from_source.rst b/docs/install/from_source.rst index acbd9b413d74..c4d0c590638d 100644 --- a/docs/install/from_source.rst +++ b/docs/install/from_source.rst @@ -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