1
0
Fork 0
arangodb/3rdParty/V8/V8-5.0.71.39
servusoft 8931eb8bd0 Adding dependencies: 'v8_libbase', 'v8_libplatform' by v8_use_snapshot!="true"' 2016-09-01 17:17:57 +02:00
..
base/trace_event/common
benchmarks
build corrected v8 build on mac 2016-05-02 18:20:44 +02:00
buildtools
docs
include
infra
samples
src fixed segfault in V8, by backporting https://bugs.chromium.org/p/v8/issues/detail?id=5033 2016-07-18 09:44:38 +02:00
test once more fix python call in gyp 2016-07-05 15:22:42 +02:00
testing
third_party
tools Adding dependencies: 'v8_libbase', 'v8_libplatform' by v8_use_snapshot!="true"' 2016-09-01 17:17:57 +02:00
.clang-format
.gitignore
.landmines
.ycm_extra_conf.py
AUTHORS
BUILD.gn
ChangeLog
DEPS
LICENSE
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile
Makefile.android
Makefile.nacl
OWNERS
PRESUBMIT.py
README.md
WATCHLISTS
codereview.settings
snapshot_toolchain.gni

README.md

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://github.com/v8/v8/wiki

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned on the V8 wiki.