Skip to content

Commit 8a5c100

Browse files
bzozMylesBorins
authored andcommitted
win, tools: add nasm to boxstarter script
Adds NASM installation to the Boxstarter script. Refs: #19918 PR-URL: #19950 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent fc41817 commit 8a5c100

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tools/bootstrap/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ the following [Chocolatey] packages:
88
* [Git for Windows][] with the `git` and Unix tools added to the `PATH`
99
* [Python 2.x][]
1010
* [Visual Studio 2017 Build Tools][] with [Visual C++ workload][]
11+
* [NetWide Assembler][]
1112

1213
To install Node.js prerequisites using [Boxstarter WebLauncher][], just open
1314
[this link](http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter)
@@ -52,4 +53,4 @@ xcode-select --install
5253
[Python 2.x]: https://chocolatey.org/packages/python2
5354
[Visual Studio 2017 Build Tools]: https://chocolatey.org/packages/visualstudio2017buildtools
5455
[Visual C++ workload]: https://chocolatey.org/packages/visualstudio2017-workload-vctools
55-
56+
[NetWide Assembler]: https://chocolatey.org/packages/nasm

tools/bootstrap/windows_boxstarter

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ choco install python2 -y
1919
# Installs VS 2017 Build Tools
2020
choco install visualstudio2017buildtools -y
2121
choco install visualstudio2017-workload-vctools -y
22+
23+
# NASM
24+
choco install nasm -y

0 commit comments

Comments
 (0)