V8: How to Build
1. Install depot tools git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git export PATH=/home/syine/repos/depot_tools:$PATH 2. fetch v8 fetch v8 cd ./v8 본인은 이 단계에서 너무 과하게 느리다는 생각이 들어서 (6시간 이상 소요) wget, curl, apt-get을 IPv4로 강제 설정했다. 3. Commit Reversion (Optional) 이전 버전을 빌드하고 싶으면 commit hash를 찾아서 롤백해주면 된다. git checkout [hash] gclient sync -D 4. Install Build Dependencies (Lin..