Open lloeki opened 4 years ago
Actually got the scripts working on my Windows machine, seems there's missing checksum for the version it downloaded, which I added. Just looking for some general advice on how I can locally test an installation with this gem.
Hello,
Is here a way to help out on this? I'm running a use-case where I'd need to be able to install
mini_racer
on a Windows native build, andlibv8-node
fails to install because it cannot download NodeJS to build the binary.Some quick searching shows the problem to be here:
https://github.com/rubyjs/libv8-node/blob/master/libexec/download-node
This doesn't work on Windows, because for example for 21.7.2, there is no correct path being build to download the package. If I follows the code directly, it tries to download https://nodejs.org/dist/v21.7.2/node-v21.7.2.tag.gz but that doesn't exist, as it should either download the
-headers
package, or a platform specific one. Although for windows it becomes a 7z file instead.