0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 07:37:56 +01:00
nodejs/deps/v8
Richard Lau 228e703ded deps: workaround debug link error on Windows
PR-URL: https://github.com/nodejs/node/pull/38807
Refs: https://github.com/nodejs/node/pull/38788
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ash Cripps <acripps@redhat.com>
2021-10-13 17:11:37 +00:00
..
.github
base/trace_event/common deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
bazel deps: update V8 to 9.4.146.18 2021-10-02 08:40:27 +02:00
build_overrides
custom_deps
docs
gni deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
include deps: silence irrelevant V8 warning 2021-10-12 08:08:37 +02:00
infra deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
samples deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
src deps: workaround debug link error on Windows 2021-10-13 17:11:37 +00:00
test deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
testing deps: patch V8 to 9.3.345.19 2021-09-16 15:40:42 +00:00
third_party deps: V8: patch jinja2 for Python 3.10 compat 2021-10-12 08:08:43 +02:00
tools deps: V8: un-cherry-pick bd019bd 2021-10-12 08:07:57 +02:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8 deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
.gn
.mailmap
.vpython
.ycm_extra_conf.py deps: update V8 to 9.4.146.18 2021-10-02 08:40:27 +02:00
AUTHORS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
BUILD.bazel deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
BUILD.gn deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
DEPS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
DIR_METADATA
ENG_REVIEW_OWNERS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
MIPS_OWNERS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
OWNERS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS deps: update V8 to 9.5.172.19 2021-10-12 08:07:50 +02:00
WORKSPACE

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.