Skip to content

Commit f0a0fdd

Browse files
Trottevanlucas
authored andcommittedJan 24, 2018
doc: multiple updates to BUILDING.md
* remove spaces around slash in BUILDING.md * hyphenate _end-of-life_ in BUILDING.md * add missing comma in BUILDING.md * add missing backticks in BUILDING.md * add missing comma to BUILDING.md PR-URL: #17985 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent 3456e61 commit f0a0fdd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
 

‎BUILDING.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ file a new issue.
1010

1111
## Supported platforms
1212

13-
This list of supported platforms is current as of the branch / release to
13+
This list of supported platforms is current as of the branch/release to
1414
which it is attached.
1515

1616
### Input
@@ -33,15 +33,15 @@ Support is divided into three tiers:
3333

3434
### Supported platforms
3535

36-
The community does not build or test against end of life distributions (EoL).
37-
Thus we do not recommend that you use Node on end of life or unsupported platforms
36+
The community does not build or test against end-of-life distributions (EoL).
37+
Thus we do not recommend that you use Node on end-of-life or unsupported platforms
3838
in production.
3939

4040
| System | Support type | Version | Architectures | Notes |
4141
|--------------|--------------|----------------------------------|----------------------|------------------|
4242
| GNU/Linux | Tier 1 | kernel >= 2.6.32, glibc >= 2.12 | x64, arm, arm64 | |
4343
| macOS | Tier 1 | >= 10.10 | x64 | |
44-
| Windows | Tier 1 | >= Windows 7 / 2008 R2 | x86, x64 | vs2017 |
44+
| Windows | Tier 1 | >= Windows 7/2008 R2 | x86, x64 | vs2017 |
4545
| SmartOS | Tier 2 | >= 15 < 16.4 | x86, x64 | see note1 |
4646
| FreeBSD | Tier 2 | >= 10 | x64 | |
4747
| GNU/Linux | Tier 2 | kernel >= 3.13.0, glibc >= 2.19 | ppc64le >=power8 | |
@@ -92,7 +92,7 @@ Depending on host platform, the selection of toolchains may vary.
9292
*Note:* All prerequisites can be easily installed by following
9393
[this bootstrapping guide](https://github.com/nodejs/node/blob/master/tools/bootstrap/README.md).
9494

95-
### Unix / macOS
95+
### Unix/macOS
9696

9797
Prerequisites:
9898

@@ -101,7 +101,7 @@ Prerequisites:
101101
* Python 2.6 or 2.7
102102
* GNU Make 3.81 or newer
103103

104-
On macOS you will need to install the `Xcode Command Line Tools` by running
104+
On macOS, you will need to install the `Xcode Command Line Tools` by running
105105
`xcode-select --install`. Alternatively, if you already have the full Xcode
106106
installed, you can find them under the menu `Xcode -> Open Developer Tool ->
107107
More Developer Tools...`. This step will install `clang`, `clang++`, and
@@ -114,7 +114,7 @@ If the path to your build directory contains a space, the build will likely fail
114114
```console
115115
$ sudo ./tools/macosx-firewall.sh
116116
```
117-
Running this script will add rules for the executable `node` in the out
117+
Running this script will add rules for the executable `node` in the `out`
118118
directory and the symbolic `node` link in the project's root directory.
119119

120120
On FreeBSD and OpenBSD, you may also need:
@@ -233,7 +233,7 @@ To test if Node.js was built correctly:
233233
> Release\node -e "console.log('Hello from Node.js', process.version)"
234234
```
235235

236-
### Android / Android-based devices (e.g. Firefox OS)
236+
### Android/Android-based devices (e.g. Firefox OS)
237237

238238
Although these instructions for building on Android are provided, please note
239239
that Android is not an officially supported platform at this time. Patches to
@@ -273,7 +273,7 @@ With the `--download=all`, this may download ICU if you don't have an
273273
ICU in `deps/icu`. (The embedded `small-icu` included in the default
274274
Node.js source does not include all locales.)
275275

276-
##### Unix / macOS:
276+
##### Unix/macOS:
277277

278278
```console
279279
$ ./configure --with-intl=full-icu --download=all
@@ -290,7 +290,7 @@ $ ./configure --with-intl=full-icu --download=all
290290
The `Intl` object will not be available, nor some other APIs such as
291291
`String.normalize`.
292292

293-
##### Unix / macOS:
293+
##### Unix/macOS:
294294

295295
```console
296296
$ ./configure --without-intl
@@ -302,7 +302,7 @@ $ ./configure --without-intl
302302
> .\vcbuild without-intl
303303
```
304304

305-
#### Use existing installed ICU (Unix / macOS only):
305+
#### Use existing installed ICU (Unix/macOS only):
306306

307307
```console
308308
$ pkg-config --modversion icu-i18n && ./configure --with-intl=system-icu
@@ -318,7 +318,7 @@ You can find other ICU releases at
318318
Download the file named something like `icu4c-**##.#**-src.tgz` (or
319319
`.zip`).
320320

321-
##### Unix / macOS
321+
##### Unix/macOS
322322

323323
From an already-unpacked ICU:
324324
```console
@@ -366,7 +366,7 @@ and [user guide](https://openssl.org/docs/fips/UserGuide-2.0.pdf).
366366
through which you get the file complies with the requirements
367367
for a "secure installation" as described in section 6.6 in
368368
the [user guide](https://openssl.org/docs/fips/UserGuide-2.0.pdf).
369-
For evaluation/experimentation you can simply download and verify
369+
For evaluation/experimentation, you can simply download and verify
370370
`openssl-fips-x.x.x.tar.gz` from https://www.openssl.org/source/
371371
2. Extract source to `openssl-fips` folder and `cd openssl-fips`
372372
3. `./config`

0 commit comments

Comments
 (0)
Please sign in to comment.