Skip to content

Commit 567e671

Browse files
himself65targos
authored andcommittedApr 11, 2020
tools: update Boxstarter script and document
PR-URL: #32299 Reviewed-By: David Carlier <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 0f1f572 commit 567e671

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎BUILDING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,6 @@ Optional requirements for compiling for Windows 10 on ARM (ARM64):
556556
* Windows 10 SDK 10.0.17763.0 or newer
557557

558558
##### Option 2: Automated install with Boxstarter
559-
<a name="boxstarter"></a>
560559

561560
A [Boxstarter](https://boxstarter.org/) script can be used for easy setup of
562561
Windows systems with all the required prerequisites for Node.js development.
@@ -567,7 +566,7 @@ packages:
567566
Unix tools added to the `PATH`.
568567
* [Python 3.x](https://chocolatey.org/packages/python) and
569568
[legacy Python](https://chocolatey.org/packages/python2)
570-
* [Visual Studio 2017 Build Tools](https://chocolatey.org/packages/visualstudio2017buildtools)
569+
* [Visual Studio 2019 Build Tools](https://chocolatey.org/packages/visualstudio2019buildtools)
571570
with [Visual C++ workload](https://chocolatey.org/packages/visualstudio2017-workload-vctools)
572571
* [NetWide Assembler](https://chocolatey.org/packages/nasm)
573572

‎tools/bootstrap/README.md

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

‎tools/bootstrap/windows_boxstarter

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
choco install git -params /GitAndUnixToolsOnPath -y
1717
choco install python python2 -y
1818

19-
# Installs VS 2017 Build Tools
20-
choco install visualstudio2017buildtools -y
21-
choco install visualstudio2017-workload-vctools -y --params="--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.VC.ATL.ARM64"
19+
# Installs VS 2019 Build Tools
20+
choco install visualstudio2019buildtools -y
21+
choco install visualstudio2019-workload-vctools -y --params="--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.VC.ATL.ARM64"
2222

2323
# NASM
2424
choco install nasm -y

0 commit comments

Comments
 (0)
Please sign in to comment.