From 3731f836ed1e2d1c7c8db56b6b0579a754e7e241 Mon Sep 17 00:00:00 2001 From: Lu Yahan Date: Sun, 12 Nov 2023 22:22:15 +0800 Subject: [PATCH] deps: V8: cherry-pick 8f0b94671ddb Original commit message: [gcc] Add include for TurboShaft Include for std::numeric_limits. Bug: chromium:819294 Change-Id: I26a71ed4bad1858d2f5ed5d7dcd529e9cae60f37 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4889285 Commit-Queue: Nico Hartmann Reviewed-by: Nico Hartmann Cr-Commit-Position: refs/heads/main@{#90347} Refs: https://github.com/v8/v8/commit/8f0b94671ddb56cc681f491d6e542b909b0d94cc PR-URL: https://github.com/nodejs/node/pull/50654 Reviewed-By: Richard Lau Reviewed-By: James M Snell --- common.gypi | 2 +- deps/v8/src/compiler/turboshaft/utils.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index c51dbca5e74c5b..a74d6420af1997 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.15', + 'v8_embedder_string': '-node.16', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/src/compiler/turboshaft/utils.h b/deps/v8/src/compiler/turboshaft/utils.h index 232c7a6dbd5b43..a028b23a490420 100644 --- a/deps/v8/src/compiler/turboshaft/utils.h +++ b/deps/v8/src/compiler/turboshaft/utils.h @@ -6,6 +6,7 @@ #define V8_COMPILER_TURBOSHAFT_UTILS_H_ #include +#include #include #include "src/base/logging.h"