We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305375a commit 0d4bc4cCopy full SHA for 0d4bc4c
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.13',
+ 'v8_embedder_string': '-node.14',
41
42
##### V8 defaults for Node.js #####
43
deps/v8/BUILD.gn
@@ -1664,6 +1664,10 @@ config("toolchain") {
1664
# of `this` in capture-by-value lambdas and preventing a build roll which
1665
# enables C++20 (see https://crbug.com/1374227).
1666
"-Wno-deprecated",
1667
+
1668
+ # Fix build with older versions of GCC
1669
+ # Ported from v8 bazel: https://crrev.com/c/3368869
1670
+ "-Wno-stringop-overflow",
1671
]
1672
}
1673
0 commit comments