| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent a8547bb commit 3d04491
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -40,9 +40,17 @@ To build Node.js: | |||
| 40 | 40 | ||
| 41 | 41 | ```console | |
| 42 | 42 | $ ./configure | |
| 43 | - $ make | ||
| 43 | + $ make -j4 | ||
| 44 | 44 | ``` | |
| 45 | 45 | ||
| 46 | + Running `make` with the `-j4` flag will cause it to run 4 compilation jobs | ||
| 47 | + concurrently which may significantly reduce build time. The number after `-j` | ||
| 48 | + can be changed to best suit the number of processor cores on your machine. If | ||
| 49 | + you run into problems running `make` with concurrency, try running it without | ||
| 50 | + the `-j4` flag. See the | ||
| 51 | + [GNU Make Documentation](https://www.gnu.org/software/make/manual/html_node/Parallel.html) | ||
| 52 | + for more information. | ||
| 53 | + | ||
| 46 | 54 | Note that the above requires that `python` resolve to Python 2.6 or 2.7 and not a newer version. | |
| 47 | 55 | ||
| 48 | 56 | To run the tests: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments