We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d806a commit f55380aCopy full SHA for f55380a
common.gypi
@@ -37,7 +37,7 @@
37
38
# Reset this number to 0 on major V8 upgrades.
39
# Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string': '-node.7',
+ 'v8_embedder_string': '-node.8',
41
42
##### V8 defaults for Node.js #####
43
deps/v8/BUILD.gn
@@ -1696,6 +1696,10 @@ config("toolchain") {
1696
# of `this` in capture-by-value lambdas and preventing a build roll which
1697
# enables C++20 (see https://crbug.com/1374227).
1698
"-Wno-deprecated",
1699
+
1700
+ # Fix build with older versions of GCC
1701
+ # Ported from v8 bazel: https://crrev.com/c/3368869
1702
+ "-Wno-stringop-overflow",
1703
]
1704
}
1705
0 commit comments