commit | 84b9afe46695043d9d028a0a328f59159a10cbef | [log] [tgz] |
---|---|---|
author | jacob.bramley <jacob.bramley@arm.com> | Mon Jun 01 04:26:27 2015 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jun 01 04:26:34 2015 |
tree | 3eab6e76f22458276f2f5041eb71bb5f6626b9ed | |
parent | df7a8adf7440abfa57265a28fa906493504606fc [diff] |
[arm] Fix detection of architecture versions. Use __ARM_ARCH_6ZK__ instead of __ARM_ARCH_6KZ__. The architecture is technically called ARMv6KZ, but GCC has always called it 6ZK. Clang defines __ARM_ARCH_6K__ for this target, and is unaffected. BUG=v8:3978 LOG=N Review URL: https://codereview.chromium.org/1145973004 Cr-Commit-Position: refs/heads/master@{#28709}
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://code.google.com/p/v8/
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/*