Skip to content

Commit 56cbc7f

Browse files
gengjiawenBethGriggs
authored andcommitted
deps: V8: cherry-pick c2792e58035f
Original commit message: [base] Fix build with gcc-13 See https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes. Also see Gentoo Linux bug report: https://bugs.gentoo.org/865981 Change-Id: I421f396b02ba37e12ee70048ee33e034f8113566 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3934140 Reviewed-by: Clemens Backes <[email protected]> Reviewed-by: Simon Zünd <[email protected]> Commit-Queue: Clemens Backes <[email protected]> Cr-Commit-Position: refs/heads/main@{#83587} Refs: v8/v8@c2792e5 PR-URL: #44961 Fixes: #43642 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent fc47d58 commit 56cbc7f

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
# Reset this number to 0 on major V8 upgrades.
3939
# Increment by one for each non-official patch applied to deps/v8.
40-
'v8_embedder_string': '-node.24',
40+
'v8_embedder_string': '-node.25',
4141

4242
##### V8 defaults for Node.js #####
4343

deps/v8/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ Vlad Burlik <[email protected]>
236236
Vladimir Krivosheev <[email protected]>
237237
Vladimir Shutoff <[email protected]>
238238
Wael Almattar <[email protected]>
239+
WANG Xuerui <[email protected]>
239240
240241
Wenlu Wang <[email protected]>
241242
Wenyu Zhao <[email protected]>

deps/v8/src/base/logging.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef V8_BASE_LOGGING_H_
66
#define V8_BASE_LOGGING_H_
77

8+
#include <cstdint>
89
#include <cstring>
910
#include <sstream>
1011
#include <string>

deps/v8/src/inspector/v8-string-conversions.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef V8_INSPECTOR_V8_STRING_CONVERSIONS_H_
66
#define V8_INSPECTOR_V8_STRING_CONVERSIONS_H_
77

8+
#include <cstdint>
89
#include <string>
910

1011
// Conversion routines between UT8 and UTF16, used by string-16.{h,cc}. You may

0 commit comments

Comments
 (0)