2015-12-22 82 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. 

我錯過了什麼?謝謝!

回答

相關問題