tools: update Boxstarter script and document

PR-URL: https://github.com/nodejs/node/pull/32299
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
himself65 2020-03-16 18:17:08 +08:00 committed by Anna Henningsen
parent d03d9a05f0
commit 4d59253bc3
No known key found for this signature in database
GPG Key ID: A94130F0BFC8EBE9
3 changed files with 7 additions and 7 deletions

View File

@ -557,7 +557,6 @@ Optional requirements for compiling for Windows 10 on ARM (ARM64):
* Windows 10 SDK 10.0.17763.0 or newer
##### Option 2: Automated install with Boxstarter
<a name="boxstarter"></a>
A [Boxstarter](https://boxstarter.org/) script can be used for easy setup of
Windows systems with all the required prerequisites for Node.js development.
@ -568,7 +567,7 @@ packages:
Unix tools added to the `PATH`.
* [Python 3.x](https://chocolatey.org/packages/python) and
[legacy Python](https://chocolatey.org/packages/python2)
* [Visual Studio 2017 Build Tools](https://chocolatey.org/packages/visualstudio2017buildtools)
* [Visual Studio 2019 Build Tools](https://chocolatey.org/packages/visualstudio2019buildtools)
with [Visual C++ workload](https://chocolatey.org/packages/visualstudio2017-workload-vctools)
* [NetWide Assembler](https://chocolatey.org/packages/nasm)

View File

@ -1,2 +1,3 @@
See the main project [BUILDING.md](../../BUILDING.md#boxstarter) for details on
how to use this script.
See the main project
[BUILDING.md](../../BUILDING.md#option-2-automated-install-with-boxstarter)
for details on how to use this script.

View File

@ -16,9 +16,9 @@
choco install git -params /GitAndUnixToolsOnPath -y
choco install python python2 -y
# Installs VS 2017 Build Tools
choco install visualstudio2017buildtools -y
choco install visualstudio2017-workload-vctools -y --params="--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.VC.ATL.ARM64"
# Installs VS 2019 Build Tools
choco install visualstudio2019buildtools -y
choco install visualstudio2019-workload-vctools -y --params="--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.VC.ATL.ARM64"
# NASM
choco install nasm -y