From d3c5bc1c6398105af2af446738adc2744cde4d31 Mon Sep 17 00:00:00 2001 From: rainabba Date: Wed, 21 Sep 2016 15:37:26 -0700 Subject: [PATCH] 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 Reviewed-By: Franziska Hinkelmann Reviewed-By: Rich Trott Reviewed-By: Ilkka Myller Reviewed-By: Luigi Pinca --- BUILDING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index d159578485..4f13748f93 100644 --- a/BUILDING.md +++ b/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