Lines Matching full:ninja
1 # Building Node.js with Ninja
3 The purpose of this guide is to show how to build Node.js using [Ninja][], as
5 [Ninja's site][Ninja] for installation instructions (Unix only).
7 [Ninja][] is supported in the Makefile. Run `./configure --ninja` to configure
8 the project to run the regular `make` commands with Ninja.
10 For example, `make` will execute `ninja -C out/Release` internally
19 ninja: Entering directory `out/Release`
25 produce and is one of the benefits of using Ninja. When using Ninja, builds
31 make -j4 # With this flag, Ninja will limit itself to 4 parallel jobs,
40 ./configure --ninja --debug && make
43 ## Customizing `ninja` path
45 On some systems (such as RHEL7 and below), the Ninja binary might be installed
46 with a different name. For these systems use the `NINJA` env var:
49 ./configure --ninja && NINJA="ninja-build" make
52 [Ninja]: https://ninja-build.org/