Skip to content

Commit 8b58a47

Browse files
committed
deps,lib,src: add experimental web storage
nodejs/node#52435
1 parent eddfe2d commit 8b58a47

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

patches/node/build_add_gn_build_files.patch

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,26 @@ index 119d49456911e99944294bd00b3f182a8f0e35b5..ce38c3633a228306622a7237067393d2
407407
+ "-Wno-unused-function",
408408
+ ]
409409
}
410+
diff --git a/deps/sqlite/unofficial.gni b/deps/sqlite/unofficial.gni
411+
index ebb3ffcd6d42b4c16b6865a91ccf4428cffe864b..00225afa1fb4205f1e02d9f185aeb97d642b3fd9 100644
412+
--- a/deps/sqlite/unofficial.gni
413+
+++ b/deps/sqlite/unofficial.gni
414+
@@ -18,8 +18,14 @@ template("sqlite_gn_build") {
415+
forward_variables_from(invoker, "*")
416+
public_configs = [ ":sqlite_config" ]
417+
sources = gypi_values.sqlite_sources
418+
+ cflags_c = [
419+
+ "-Wno-implicit-fallthrough",
420+
+ "-Wno-unreachable-code-break",
421+
+ "-Wno-unreachable-code-return",
422+
+ "-Wno-unreachable-code",
423+
+ ]
424+
if (is_win) {
425+
- cflags_c = [
426+
+ cflags_c += [
427+
"-Wno-sign-compare",
428+
"-Wno-unused-but-set-variable",
429+
"-Wno-unused-function",
410430
diff --git a/deps/uv/BUILD.gn b/deps/uv/BUILD.gn
411431
index 8e6ac27048b5965e20f35c7a63e469beb6fa5970..7518168141db7958550c7f5dc1ed17ccdbbe4a60 100644
412432
--- a/deps/uv/BUILD.gn

0 commit comments

Comments
 (0)