node/deps/v8
Dan McDonald 5baff3e47b
deps: support madvise(3C) across ALL illumos revisions
In illumos, madvise(3C) now takes `void *` for its first argument
post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will
detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so
builds can work either way.

PR-URL: https://github.com/nodejs/node/pull/58237
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
2025-08-07 14:14:08 +00:00
..
.github
bazel deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
build_overrides deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
custom_deps
docs deps: update V8 to 13.0.245.25 2025-01-31 12:45:51 +01:00
gni deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
include deps: V8: backport 493cb53691be 2025-07-29 15:51:26 +00:00
infra deps: patch V8 to 13.7.152.13 2025-06-03 01:07:59 +00:00
samples deps: update V8 to 13.0.245.25 2025-01-31 12:45:51 +01:00
src deps: support madvise(3C) across ALL illumos revisions 2025-08-07 14:14:08 +00:00
test deps: patch V8 to 13.7.152.19 2025-07-24 11:28:42 +00:00
testing
third_party deps: V8: revert rapidhash commits 2025-07-15 19:29:38 -03:00
tools deps: V8: revert rapidhash commits 2025-07-15 19:29:38 -03:00
.bazelrc deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
.clang-format
.clang-tidy deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
.editorconfig deps: update V8 to 12.9.202.18 2024-09-19 14:25:34 +00:00
.flake8
.git-blame-ignore-revs deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
.gitattributes
.gitignore deps: V8: revert rapidhash commits 2025-07-15 19:29:38 -03:00
.gn deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
.mailmap
.style.yapf
.vpython3 deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
.ycm_extra_conf.py
AUTHORS deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
BUILD.bazel deps: V8: revert rapidhash commits 2025-07-15 19:29:38 -03:00
BUILD.gn deps: V8: revert rapidhash commits 2025-07-15 19:29:38 -03:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
DEPS deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
DIR_METADATA deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
ENG_REVIEW_OWNERS deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
INFRA_OWNERS
INTL_OWNERS
LICENSE deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
MODULE.bazel deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
OWNERS deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
PPC_OWNERS
PRESUBMIT.py deps: update V8 to 13.7.152.9 2025-05-18 07:42:43 +00:00
pyrightconfig.json deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS deps: update V8 to 13.6.233.8 2025-05-02 15:06:53 +02:00

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.