-
-
Save tom-code/dcd6c0279a2b19a84b07700593e249be to your computer and use it in GitHub Desktop.
v8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
| export PATH=`pwd`/depot_tools:"$PATH" | |
| # Download v8 | |
| fetch v8 | |
| cd v8 | |
| # (optional) If you'd like to build a certain version: | |
| git checkout 6.4.388.18 | |
| gclient sync | |
| # Setup GN | |
| tools/dev/v8gen.py -vv x64.release -- is_component_build=true use_custom_libcxx=false | |
| # Build | |
| ninja -C out.gn/x64.release/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment