Skip to content

Commit 76f7298

Browse files
deps: update V8 to 14.0.231
1 parent 01af8ac commit 76f7298

File tree

2,171 files changed

+126314
-78403
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,171 files changed

+126314
-78403
lines changed

deps/v8/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868
/third_party/colorama/src
6969
!/third_party/cpu_features
7070
/third_party/cpu_features/src
71+
!/third_party/dragonbox
72+
/third_party/dragonbox/src/*
73+
!/third_party/dragonbox/src/include
7174
!/third_party/fast_float
7275
/third_party/fast_float/src/*
7376
!/third_party/fast_float/src/include
@@ -89,6 +92,7 @@
8992
/third_party/jsoncpp/source
9093
!/third_party/llvm-libc
9194
/third_party/llvm-libc/src
95+
!/third_party/rapidhash-v8
9296
!/third_party/re2
9397
/third_party/re2/src
9498
!/third_party/siphash

deps/v8/.gn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ default_args = {
2828
# Disable js dependencies like the closure compiler.
2929
enable_js_protobuf = false
3030

31-
# Disable rust dependencies.
31+
# Enable rust dependencies.
3232
enable_rust = true
3333

3434
# Needed only for std::atomic_ref<T> for large Ts http://crbug.com/402171653
3535
use_llvm_libatomic = false
36+
37+
# Use Siso instead of Ninja.
38+
use_siso = true
3639
}
3740

3841
# These are the list of GN files that run exec_script. This whitelist exists

deps/v8/.ycm_extra_conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ def GetClangCommandFromNinjaForFilename(v8_root, filename):
132132
# Ninja might execute several commands to build something. We want the last
133133
# clang command.
134134
clang_line = None
135-
for line in reversed(stdout.decode('utf-8').splitlines()):
135+
for line in reversed(stdout.splitlines()):
136+
try:
137+
line = line.decode('utf-8')
138+
except UnicodeDecodeError:
139+
continue
136140
if 'clang' in line:
137141
clang_line = line
138142
break

deps/v8/AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ Fedor Indutny <[email protected]>
130130
Felix Geisendörfer <[email protected]>
131131
132132
Filipe David Manana <[email protected]>
133+
Florian Loitsch <[email protected]>
133134
Frank Lemanschik <[email protected]>
134135
Franziska Hinkelmann <[email protected]>
135136
Gao Sheng <[email protected]>
@@ -183,12 +184,14 @@ Junha Park <[email protected]>
183184
Junming Huang <[email protected]>
184185
Kang-Hao (Kenny) Lu <[email protected]>
185186
Karl Skomski <[email protected]>
187+
Kasper Lund <[email protected]>
186188
Keith Smiley <[email protected]>
187189
Kevin Gibbons <[email protected]>
188190
Keyhan Vakil <[email protected]>
189191
Kris Selden <[email protected]>
190192
Kyounga Ra <[email protected]>
191193
194+
LN Liberda <[email protected]>
192195
Loo Rong Jie <[email protected]>
193196
194197
Ludovic Mermod <[email protected]>
@@ -270,6 +273,7 @@ Sanjoy Das <[email protected]>
270273
Sam James <[email protected]>
271274
Sébastien Doeraene <[email protected]>
272275
Seo Sanghyeon <[email protected]>
276+
Sergey Markelov <[email protected]>
273277
Shawn Anastasio <[email protected]>
274278
Shawn Presser <[email protected]>
275279
Sho Miyamoto <[email protected]>
@@ -335,3 +339,4 @@ Jing Peiyang <[email protected]>
335339
magic-akari <[email protected]>
336340
Ryuhei Shima <[email protected]>
337341
Domagoj Stolfa <[email protected]>
342+
Zhijin Zeng <[email protected]>

0 commit comments

Comments
 (0)