commit | 757ea240f4208cf954d1e70cb1505b44fbb1f2d8 | [log] [tgz] |
---|---|---|
author | bjaideep <bjaideep@ca.ibm.com> | Thu Aug 18 14:42:48 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Aug 18 14:43:12 2016 |
tree | b39bf2eec667ff9e56657d066f28113495f2ad59 | |
parent | 280fdf641169daac48f8273dddb8f7c85d9dd7be [diff] |
Workaround for gcc array bound check issue V8 doesn't build on Ubuntu 16.04 (with GCC 5.3). Seems to be a known regression on newer GCC version. It emits incorrect "error: array subscript is above array bounds" message. Adding explicit array bound check fixes the issue. R=hablich@chromium.org BUG= Review-Url: https://codereview.chromium.org/2256113002 Cr-Commit-Position: refs/heads/master@{#38721}
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
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/*
Please follow the instructions mentioned on the V8 wiki.