| commit | 0f81fe3a06e1ad726e4be4fb04a53befd40d860a | [log] [tgz] |
|---|---|---|
| author | StefanStojanovic <stefko.stojanovic@gmail.com> | Wed Apr 12 10:47:36 2023 |
| committer | V8 LUCI CQ <v8-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Apr 12 12:51:09 2023 |
| tree | 48fe3adc4cf9a3cdbc1cd511bad24b12fba71e78 | |
| parent | 6d4ba583dff27894f143d54ae6da3b185fbe2803 [diff] |
[msvc] minor MSVC friendly changes Changed GCC specific __sync_synchronize() with a more general C++11 std::atomic_thread_fence(std::memory_order_seq_cst). Changed GCC specific __attribute__((aligned(n))) with a more general C++11 alignas(n). Change-Id: Ie59df1b74305e2afdda8b23c9d5cd9a57bd97eef Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4403215 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Cr-Commit-Position: refs/heads/main@{#87033}
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://v8.dev/docs
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 at v8.dev/docs/contribute.