V8 commit: "Remove JS natives support, step 1" broke JSVU's V8 installation
See original GitHub issueThis commit: https://github.com/v8/v8/commit/28a9dc2b81faec353c8cbcfcba699e61910cf51c#diff-da88faf5ecb7458b02cfbdfab426c3c1 removed the --natives_blob
flag. That flag is used in both v8
and v8-debug
:
- https://github.com/GoogleChromeLabs/jsvu/blob/master/engines/v8/extract.js#L45-L56
- https://github.com/GoogleChromeLabs/jsvu/blob/master/engines/v8-debug/extract.js#L44-L77
The result is:
$ echo "print(1+1);" >> add.js && v8 ./add.js
Warning: unknown flag --natives_blob=/Users/rwaldron/.jsvu/engines/v8/natives_blob.bin.
Try --help for options
2
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Step 1 - USMLE.org
Step 1 assesses whether you understand and can apply important concepts of the sciences basic to the practice of medicine, with special emphasis...
Read more >From first principles: Why I bet on Scala.js
Three years ago, I downloaded the nascent Scala.js compiler and tried to use it on a toy project. Since then, it has matured...
Read more >Cross-Platform Desktop Development (JavaFX vs. Electron)
Java 8 offers support to deploy a JavaFX application as a native app. In this ... Node.js is a JavaScript platform built on...
Read more >The Step 1 exam is going pass-fail. Now what? - AAMC
For years, medical residency programs used Step 1 to help pick candidates. An advisor offers insights on how medical students might deal ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for the report!
We should change jsvu to use
--natives_blob
only for V8 versions prior to v7.9.That’s what I get for pushing hotfixes on a Friday 😃 @mhofman This should be resolved in
jsvu@latest
.