File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ template("nghttp2_gn_build") {
34
34
if (is_clang || ! is_win ) {
35
35
cflags_c = [
36
36
" -Wno-implicit-fallthrough" ,
37
+ # Ref https://github.com/nghttp2/nghttp2/pull/2258
38
+ # This can be removed when the above PR is ingested.
39
+ " -Wno-extra-semi" ,
37
40
]
38
41
}
39
42
}
Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ template("sqlite_gn_build") {
18
18
forward_variables_from (invoker , " *" )
19
19
public_configs = [ " :sqlite_config" ]
20
20
sources = gypi_values .sqlite_sources
21
+ cflags_c = [
22
+ " -Wno-implicit-fallthrough" ,
23
+ " -Wno-unreachable-code-return" ,
24
+ " -Wno-unreachable-code-break" ,
25
+ " -Wno-unreachable-code" ,
26
+ ]
21
27
if (is_win ) {
22
- cflags_c = [
28
+ cflags_c + = [
23
29
" -Wno-sign-compare" ,
24
30
" -Wno-unused-but-set-variable" ,
25
31
" -Wno-unused-function" ,
You can’t perform that action at this time.
0 commit comments