I have compiled V8 source code in Ubuntu 16.04 successfully. I checked the V8 is the latest version, say
V8 version 7.1.0(candidate).2. export PATH=pwd/depot_tools:"$PATH"
3. gclient
4. fetch v8 cd v8
5. gclient sync
6. ./build/install-build-deps.sh (only once)
7. tools/dev/v8gen.py x64.debug
And now, I want to reproduce some bugs which appear in earlier V8 version. So in v8 directory, I use command git branch v6.5.1 origin/6.5.1, git checkout v6.5.1 and try to get earlier source code.
But when I use command tools/dev/v8gen.py x64.debug, it appears
when I use command gclient sync below, it still goes wrong.
And I also tried the command git reset --hard HEAD,but still failed.
So ,is there anyone who can help me figure out the problem?
Thanks in advance!