downloaded code as described in Using Git:
fetch v8
cd v8
built as described in BuildingWithGYP:
gclient sync
make x64.release
updated to the latest master, and used a sample:
git checkout master
git pull
but when building a samle as described in Get Started, I met an error
g++ -I. hello_world.cc -o hello_world -Wl,--start-group out/x64.release/obj.target/{tools/gyp/libv8_{base,libbase,snapshot,libplatform},third_party/icu/libicu{uc,i18n,data}}.a -Wl,--end-group -lrt -pthread -std=c++0x
g++: error: out/x64.release/obj.target/tools/gyp/libv8_snapshot.a: No such file or directory
and it turns out there is no such file:
$ find . -name *snapshot*.a
./out/x64.release/obj.target/tools/gyp/libv8_nosnapshot.a
./out/x64.release/obj.target/tools/gyp/libv8_external_snapshot.a
So the question is, what I'm doing wrong?