修改Chrome提供的V8 JavaScript引擎

发布于 2024-12-01 14:45:56 字数 179 浏览 5 评论 0原文

我想要支持 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请你别敷衍 2024-12-08 14:45:56

只是一个想法...

例如,V8 开发人员可能希望检查 V8 主干
以及 Chromium 的稳定版本。所以,他们可能会设置一个
.gclient 文件如下:

<前><代码>解决方案 = [
{
“名称”:“铬”,
“网址”:“http://src.chromium.org/svn/trunk/src/chrome@5000”,
“自定义依赖”:{
“v8”:“http://v8.googlecode.com/svn/trunk”
}
}]

http://www.chromium.org/developers/how -tos/chromium-modularization

您也许可以通过将 v8 的 custom_deps 指向它来使用您自己的 v8 版本编译 Chromium。

Just a thought...

For example, a V8 developer may wish to checkout the V8 trunk
alongside a stable version of Chromium. So, they might setup a
.gclient file like so:

 solutions = [   
 { 
     "name"        : "chrome",
     "url"         : "http://src.chromium.org/svn/trunk/src/chrome@5000",
     "custom_deps" : {
       "v8" : "http://v8.googlecode.com/svn/trunk"
     }   
}]

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文