GoogleChromeLabs / jsvu

JavaScript (engine) Version Updater
https://mths.be/jsvu
Apache License 2.0
1.9k stars 92 forks source link

install hermes error #114

Open clhiker opened 3 years ago

clhiker commented 3 years ago

✔ Found latest Hermes version: v0.8.0. ✔ URL: https://github.com/facebook/hermes/releases/download/v0.8.0/hermes-cli-linux-v0.8.0.tar.gz ✔ Download completed. ❯ Extracting… Installing binary to ~/.jsvu/engines/hermes/hermes… Installing symlink at ~/.jsvu/hermes pointing to ~/.jsvu/engines/hermes/hermes… Installing binary to ~/.jsvu/engines/hermes/hermes-compiler… Installing symlink at ~/.jsvu/hermes-compiler pointing to ~/.jsvu/engines/hermes/hermes-compiler… ✔ Extraction completed. ❯ Testing… ✖ Error: Command was killed with SIGSEGV: /root/.jsvu/hermes /tmp/07291a24978c81f269cdb03d5676c574

when I run the jsvu, I encounter this problem.

mathiasbynens commented 3 years ago

I can reproduce this with Hermes on linux64. It looks like it’s a Hermes issue, though:

$ hermes
>> ^C
Segmentation fault

$ cat test.js
print('Hello world!');

$ hermes test.js
Hello world!
Segmentation fault

If you are seeing the same behavior, please file an upstream issue and link to it here!