Fix node.lib download link (#21930)

The documentation is currently pointing to a download link that leads to a 404 for the ARM64 version of `node.lib`. This change updates the link to the correct download for ARM64 `node.lib`.
This commit is contained in:
Mehedi Hassan 2020-01-28 22:15:09 +00:00 committed by GitHub
parent 548b290ea7
commit 1d58db82f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ If you want to develop your application directly on a Windows on Arm device, sub
By default, `node-gyp` unpacks Electron's node headers and downloads the x86 and x64 versions of `node.lib` into `%APPDATA%\..\Local\node-gyp\Cache`, but it does not download the arm64 version ([a fix for this is in development](https://github.com/nodejs/node-gyp/pull/1875).) To fix this:
1. Download the arm64 `node.lib` from https://atom.io/download/v6.0.9/win-arm64/node.lib
1. Download the arm64 `node.lib` from https://electronjs.org/headers/v6.0.9/win-arm64/node.lib
2. Move it to `%APPDATA%\..\Local\node-gyp\Cache\6.0.9\arm64\node.lib`
Substitute `6.0.9` for the version you're using.