summaryrefslogtreecommitdiff
path: root/tools/bootstrap
diff options
context:
space:
mode:
authorBartosz Sosnowski <bartosz@janeasystems.com>2018-04-11 18:08:24 +0200
committerJames M Snell <jasnell@gmail.com>2018-04-14 13:34:43 -0700
commit887f4c54ce843bfa2a63ad1135f15ab885546943 (patch)
tree1f0667e7f822728371edb5d5fea61899d687180c /tools/bootstrap
parentcc7bef9eed6641aa0e821139b9d5227f4ae81496 (diff)
downloadandroid-node-v8-887f4c54ce843bfa2a63ad1135f15ab885546943.tar.gz
android-node-v8-887f4c54ce843bfa2a63ad1135f15ab885546943.tar.bz2
android-node-v8-887f4c54ce843bfa2a63ad1135f15ab885546943.zip
win, tools: add nasm to boxstarter script
Adds NASM installation to the Boxstarter script. Refs: https://github.com/nodejs/node/issues/19918 PR-URL: https://github.com/nodejs/node/pull/19950 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools/bootstrap')
-rw-r--r--tools/bootstrap/README.md3
-rw-r--r--tools/bootstrap/windows_boxstarter3
2 files changed, 5 insertions, 1 deletions
diff --git a/tools/bootstrap/README.md b/tools/bootstrap/README.md
index a61e947a2a..68beb2f646 100644
--- a/tools/bootstrap/README.md
+++ b/tools/bootstrap/README.md
@@ -8,6 +8,7 @@ the following [Chocolatey] packages:
* [Git for Windows][] with the `git` and Unix tools added to the `PATH`
* [Python 2.x][]
* [Visual Studio 2017 Build Tools][] with [Visual C++ workload][]
+ * [NetWide Assembler][]
To install Node.js prerequisites using [Boxstarter WebLauncher][], just open
[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
[Python 2.x]: https://chocolatey.org/packages/python2
[Visual Studio 2017 Build Tools]: https://chocolatey.org/packages/visualstudio2017buildtools
[Visual C++ workload]: https://chocolatey.org/packages/visualstudio2017-workload-vctools
-
+[NetWide Assembler]: https://chocolatey.org/packages/nasm
diff --git a/tools/bootstrap/windows_boxstarter b/tools/bootstrap/windows_boxstarter
index 144c309ae1..dd2281fa11 100644
--- a/tools/bootstrap/windows_boxstarter
+++ b/tools/bootstrap/windows_boxstarter
@@ -19,3 +19,6 @@ choco install python2 -y
# Installs VS 2017 Build Tools
choco install visualstudio2017buildtools -y
choco install visualstudio2017-workload-vctools -y
+
+# NASM
+choco install nasm -y