Skip to content

Instantly share code, notes, and snippets.

@thlorenz
Last active August 29, 2015 14:18
Show Gist options
  • Save thlorenz/5b6d354fd8c45880dc1f to your computer and use it in GitHub Desktop.
Save thlorenz/5b6d354fd8c45880dc1f to your computer and use it in GitHub Desktop.
Get complete v8 Project

Steps to checkout v8 source and initialize it properly. This includes tests, d8 and example projects.

## get source and initialize dependencies
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git && cd depot_tools
export PATH=`pwd`:$PATH

cd ../
mkdir v8_checkout && cd v8_checkout
fetch v8 && cd v8

## Update projects
./build/gyp_v8

At this point on OSX you can also open build/all.xcodeproj to open the project in Xcode.

Resources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment