node/deps/v8
Stefan Stojanovic 5c2e0618f3
deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools

PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2025-01-05 13:05:32 -05:00
..
.github
base/trace_event/common deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
bazel deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
build_overrides deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
custom_deps
docs
gni deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
include deps: define V8_PRESERVE_MOST as no-op on Windows 2025-01-05 13:05:32 -05:00
infra deps: patch V8 to 12.4.254.17 2024-05-21 15:50:16 +02:00
samples deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
src deps: V8: backport 0d5d6e71bbb0 2024-10-08 12:17:07 +02:00
test deps: V8: backport 0d5d6e71bbb0 2024-10-08 12:17:07 +02:00
testing
third_party deps: fix FP16 bitcasts.h 2024-06-01 10:55:05 +02:00
tools deps: patch V8 to 12.4.254.21 2024-06-20 14:45:17 +02:00
.bazelrc
.clang-format deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
.clang-tidy deps: update V8 to 12.2.281.27 2024-03-31 15:36:07 +02:00
.editorconfig
.flake8
.git-blame-ignore-revs deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
.gitattributes
.gitignore deps: patch V8 to 12.4.254.21 2024-06-20 14:45:17 +02:00
.gn deps: update V8 to 11.9.169.7 2024-01-04 09:30:13 +01:00
.mailmap
.style.yapf deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
.vpython3 deps: update V8 to 12.2.281.27 2024-03-31 15:36:07 +02:00
.ycm_extra_conf.py
AUTHORS deps: V8: cherry-pick a3cc8522a4c8 2024-06-20 14:40:43 +02:00
BUILD.bazel deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
BUILD.gn deps: V8: cherry-pick 500de8bd371b 2024-04-29 22:46:32 +02:00
CODE_OF_CONDUCT.md
COMMON_OWNERS deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
DEPS deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
DIR_METADATA
ENG_REVIEW_OWNERS deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
INFRA_OWNERS deps: update V8 to 12.2.281.27 2024-03-31 15:36:07 +02:00
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS deps: update V8 to 12.2.281.27 2024-03-31 15:36:07 +02:00
PPC_OWNERS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
PRESUBMIT.py deps: update V8 to 12.3.219.16 2024-04-19 17:32:30 +02:00
README.md
RISCV_OWNERS
S390_OWNERS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
WATCHLISTS deps: update V8 to 11.3.244.4 2023-03-31 14:15:23 +00:00
WORKSPACE deps: update V8 to 12.4.254.14 2024-04-22 19:10:43 -03:00
codereview.settings

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://v8.dev/docs

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 at v8.dev/docs/contribute.