V8 是谷歌的开源 JavaScript 引擎。
V8 实现了 ECMA-262 中指定的 ECMAScript。
V8 使用 C++ 编写,并用于谷歌的开源浏览器 Google Chrome。
V8 可以独立运行,也可以嵌入到任何 C++ 应用程序中。
V8 项目页面:https://github.com/v8/v8/wiki
检出 depot tools,并运行
fetch v8
这会将 V8 检出到目录 v8 并获取其所有依赖项。
要保持最新,请运行
git pull origin
gclient sync
要获取所有分支,请将以下内容添加到您的远程配置 .git/config 中:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
fetch = +refs/tags/*:refs/tags/*
请遵循 V8 wiki 上提到的说明。