You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [bootstrapping guide](https://github.com/nodejs/node/blob/master/tools/bootstrap/README.md)
149
+
explains how to install all prerequisites.
152
150
153
151
### Unix/macOS
154
152
@@ -159,7 +157,7 @@ The forthcoming OpenSSL-1.1.1 will have different requirements. Please refer to
159
157
* Python 2.6 or 2.7
160
158
* GNU Make 3.81 or newer
161
159
162
-
On macOS, you will need to install the `Xcode Command Line Tools` by running
160
+
On macOS, install the `Xcode Command Line Tools` by running
163
161
`xcode-select --install`. Alternatively, if you already have the full Xcode
164
162
installed, you can find them under the menu `Xcode -> Open Developer Tool ->
165
163
More Developer Tools...`. This step will install `clang`, `clang++`, and
@@ -180,13 +178,9 @@ $ ./configure
180
178
$ make -j4
181
179
```
182
180
183
-
Running `make` with the `-j4` flag will cause it to run 4 compilation jobs
184
-
concurrently which may significantly reduce build time. The number after `-j`
185
-
can be changed to best suit the number of processor cores on your machine. If
186
-
you run into problems running `make` with concurrency, try running it without
187
-
the `-j4` flag. See the
188
-
[GNU Make Documentation](https://www.gnu.org/software/make/manual/html_node/Parallel.html)
189
-
for more information.
181
+
The `-j4` option will cause `make` to run 4 simultaneous compilation jobs which
182
+
may reduce build time. For more information, see the
183
+
[GNU Make Documentation](https://www.gnu.org/software/make/manual/html_node/Parallel.html).
190
184
191
185
Note that the above requires that `python` resolve to Python 2.6 or 2.7
0 commit comments