Thanks for the update. I see that build docs were already updated [0][1]. To bring all the steps together, it's a 6 step process to build a fresh v8
# 1) DL depot_tools git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /MY_DEPOT_TOOLS # 2) Add depot_tools to PATH export PATH=$PATH:/MY_DEPOT_TOOLS # 3) Test depot_tools (this is optional) gclient # 4) Get v8 fetch v8 cd v8 # 5) Get v8 deps gclient sync # 6) Build v8 (excluding arch, release/debug and any other options) make Do I have it right? [0] https://code.google.com/p/v8-wiki/wiki/BuildingWithGYP [1] https://code.google.com/p/v8-wiki/wiki/UsingGit On Tue, Dec 9, 2014 at 2:23 AM, Jochen Eisinger <[email protected]> wrote: > Hey, > > the dependencies and builddeps targets will be removed in about a week. > Please switch to using depot_tools and "fetch v8" for creating a v8 > checkout, and git pull origin (or git rebase-update) and gclient sync for > staying up to date. > > If you want to use the github mirror (or any other mirror), you'll have to > create a gclient spec, something like this: > > gclient config --spec "solutions = [{u'managed': False, u'name': u'v8', > u'url': u'https://github.com/v8/v8-git-mirror.git', u'deps_file': > u'.DEPS.git'}]" > gclient sync > > best > -jochen > > -- > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users > --- > You received this message because you are subscribed to the Google Groups > "v8-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
