修改Chrome提供的V8 JavaScript引擎
我想要支持 Chrome 提供的 V8 JS 引擎通常不支持的新 API。是否可以通过调整 Chrome 提供的 V8 来做到这一点。
我愿意使用 Firefox 提供的 Spidermonkey。我只是希望流行的浏览器支持这个API。
我尝试在 Google 论坛和此处寻找答案,但大多数人都在谈论嵌入 V8。
I want support for a new API that is normally not supported by V8 JS Engine provided with Chrome. Is it possible to do this by tweaking V8 provided with Chrome.
I'm open to using Spidermonkey which is provided with Firefox. I just want this API to be supported by a popular browser.
I tried looking for an answer on Google forums and here but most of them talk about embedding V8.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是一个想法...
http://www.chromium.org/developers/how -tos/chromium-modularization
您也许可以通过将 v8 的 custom_deps 指向它来使用您自己的 v8 版本编译 Chromium。
Just a thought...
http://www.chromium.org/developers/how-tos/chromium-modularization
You could perhaps compile Chromium with your own version of v8 by pointing the custom_deps for v8 to it.