1.获取V8源码
Git地址:https://github.com/v8/v8-git-mirror
2.下载四个依赖项目:Gyp,Python,icu,cygwin
https://code.google.com/p/v8-wiki/wiki/BuildingWithGYP
Gyp地址:git clone https://chromium.googlesource.com/external/gyp ,将源码移到 v8-git-mirror/build 目录下
或者 csdn下载地址: http://download.csdn.net/download/liuzhihan209/7915763
Phython地址:http://python.org/downloads/ 下载2.7.6版本,下载完成之后解压并安装,在系统环境变量的PATH路径的最后,添加Phython安装目录的路径。
icu:http://pan.baidu.com/s/1kZFWi 下载完成之后,解压,并把解压后的icu目录拷贝到v8源码的third_party目录下。
可以选择使用SVN,下载地址:svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@231940 third_party/cygwin
也可以到CSDN这里下载:http://download.csdn.net/detail/liuzhihan209/6983931
3.打开CMD程序,进入v8-git-mirror源码目录。
执行命令:Python build/gyp_v8
在build目录下会生成all.sln,表示V8的VS解决方案文件已经生成,直接用VS2013打开,并编译。
V8官方文档
https://developers.google.com/v8/build