2015-12-22 132 views
1

我正在尝试构建JavaScript V8 Engine来探索它,调试它,并带来很多乐趣。在Debian机器上构建V8时出现奇怪的错误

但是我无法编译它。我跟着以下说明:

1)安装车厂工具:

cd ~

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git

export PATH='pwd'/depot_tools:"$PATH"

2)编译V8

git clone https://github.com/v8/v8

cd v8

gclient config https://chromium.googlesource.com/v8/v8

gclient sync(我也试过fetch v8它告诉我跑gclient sync

make ia32.debug

而在这最后的指令,我得到:

make: *** No rule to make target `third_party/icu/icu.gypi', needed by `out/Makefile.ia32.debug'. Stop. 

我错过了什么?谢谢!

回答

相关问题