Browse Source

doc: update BUILDING.md

Added note about vcbuild being included as batch to clarify
that it's not needed from msbuild tools or visual studio.

PR-URL: https://github.com/nodejs/node/pull/8704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
v4.x
rainabba 9 years ago
committed by Myles Borins
parent
commit
d3c5bc1c63
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 12
      BUILDING.md

12
BUILDING.md

@ -117,13 +117,13 @@ Prerequisites:
and tools which can be included in the global `PATH`.
```text
> vcbuild nosign
> .\vcbuild nosign
```
To run the tests:
```text
> vcbuild test
> .\vcbuild test
```
To test if Node.js was built correctly:
@ -172,7 +172,7 @@ $ ./configure --with-intl=small-icu --download=all
##### Windows:
```text
> vcbuild small-icu download-all
> .\vcbuild small-icu download-all
```
The `small-icu` mode builds with English-only data. You can add full
@ -195,7 +195,7 @@ $ ./configure --with-intl=full-icu --download=all
##### Windows:
```text
> vcbuild full-icu download-all
> .\vcbuild full-icu download-all
```
#### Building without Intl support
@ -212,7 +212,7 @@ $ ./configure --with-intl=none
##### Windows:
```text
> vcbuild intl-none
> .\vcbuild intl-none
```
#### Use existing installed ICU (Unix / OS X only):
@ -251,7 +251,7 @@ First unpack latest ICU to `deps/icu`
as `deps/icu` (You'll have: `deps/icu/source/...`)
```text
> vcbuild full-icu
> .\vcbuild full-icu
```
## Building Node.js with FIPS-compliant OpenSSL

Loading…
Cancel
Save