On Fri, Jun 3, 2022 at 7:08 PM Simon Koch <[email protected]> wrote: > > I have forked the v8 repository and made some changes. Now I want to build it. > However, I cannot find any documentation concerning this use case. > Every documentation starts with using fetch, however, fetch does not offer > the option to use your own repository. > Using gclient or gn results in the error message that I need to check out.
gclient is for fetching V8 and its dependencies but once you have that set up (and have a version of depot_tools checked out and on your PATH), you can configure your fork with tools/dev/gm.py and build with ninja. If you have an existing fork, try fetching upstream V8 first, then merging in the changes from your fork with `git pull` / `git merge`. -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/CAHQurc9CA_kFUD%2BahfvUfMwdK-wmWU1LdB_nXKzNcbv0zacGMw%40mail.gmail.com.
