File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ template("efr32_sdk") {
133
133
sdk_target_name = target_name
134
134
135
135
config (" ${ sdk_target_name } _config" ) {
136
+ cflags = []
136
137
include_dirs = []
137
138
libs = []
138
139
if (defined (invoker .include_dirs )) {
@@ -480,6 +481,12 @@ template("efr32_sdk") {
480
481
# TODO: Remove this flag, once the communication is fixed
481
482
" WIFI_DEBUG_ENABLED=1" ,
482
483
]
484
+
485
+ # This is kept due to the warning on the LWIP when on demand timer is added
486
+ # TODO: remove this flag once the warning is fixed in SiSDK MATTER-3946
487
+ cflags += [
488
+ " -Wno-error"
489
+ ]
483
490
}
484
491
}
485
492
@@ -605,7 +612,6 @@ template("efr32_sdk") {
605
612
]
606
613
}
607
614
608
- cflags = []
609
615
foreach (include_dir , _include_dirs ) {
610
616
cflags += [ " -isystem" + rebase_path (include_dir , root_build_dir ) ]
611
617
}
You can’t perform that action at this time.
0 commit comments