Skip to content

Commit

Permalink
tools: update Boxstarter script and document
Browse files Browse the repository at this point in the history
PR-URL: #32299
Reviewed-By: David Carlier <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
himself65 authored and targos committed Apr 11, 2020
1 parent 0f1f572 commit 567e671
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 1 addition & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,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.
Expand All @@ -567,7 +566,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)

Expand Down
5 changes: 3 additions & 2 deletions tools/bootstrap/README.md
Original file line number Diff line number Diff line change
@@ -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.
6 changes: 3 additions & 3 deletions tools/bootstrap/windows_boxstarter
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 567e671

Please sign in to comment.