Skip to content

Commit 97ab77f

Browse files
authored
RFC: Add common 3rd party warnings config target (project-chip#7959)
There is an idiom for relaxing warnings for third party in GN: configs -= [ "//buildsys/1st_party_warnings" ] configs += [ "//buildsys/3rd_party_warnings" ] The trouble is that "//buildsys/1st_party_warnings" is an object from the core build system that we have to name which introduces some coupling (e.g., projects may have the same pattern with different target names and this would not work). To minimize this coupling, indirect this through the build_overrides directory where the top level project can provide suitable targets (or not, if the defaults already work). This is provided for discussion in issue project-chip#7935
1 parent 8ccbbb5 commit 97ab77f

File tree

4 files changed

+51
-26
lines changed

4 files changed

+51
-26
lines changed

build/config/compiler/BUILD.gn

+35-13
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,27 @@ config("disabled_warnings") {
161161
}
162162
}
163163

164+
config("warnings_common") {
165+
cflags = [ "-Wall" ]
166+
167+
ldflags = []
168+
if (treat_warnings_as_errors) {
169+
cflags += [ "-Werror" ]
170+
ldflags += [ "-Werror" ]
171+
}
172+
173+
if (current_os != "mac" && current_os != "ios") {
174+
ldflags += [ "-Wl,--fatal-warnings" ]
175+
}
176+
177+
if (current_os != "mac" && current_os != "ios" && current_os != "linux" &&
178+
current_os != "win") {
179+
cflags += [ "-Wstack-usage=8192" ]
180+
}
181+
}
182+
164183
config("strict_warnings") {
165184
cflags = [
166-
"-Wall",
167185
"-Wextra",
168186
"-Wshadow",
169187
"-Wunreachable-code",
@@ -173,11 +191,6 @@ config("strict_warnings") {
173191

174192
ldflags = []
175193

176-
if (treat_warnings_as_errors) {
177-
cflags += [ "-Werror" ]
178-
ldflags += [ "-Werror" ]
179-
}
180-
181194
if (is_clang) {
182195
cflags += [
183196
"-Wimplicit-fallthrough",
@@ -193,18 +206,27 @@ config("strict_warnings") {
193206

194207
config("warnings_default") {
195208
configs = [
209+
":warnings_common",
196210
":strict_warnings",
197211
":disabled_warnings",
198212
]
213+
}
199214

200-
if (current_os != "mac" && current_os != "ios") {
201-
ldflags = [ "-Wl,--fatal-warnings" ]
202-
}
215+
config("disabled_warnings_third_party") {
216+
cflags = [
217+
"-Wno-unused",
218+
"-Wno-format",
219+
"-Wno-maybe-uninitialized",
220+
"-Wno-address",
221+
]
222+
}
203223

204-
if (current_os != "mac" && current_os != "ios" && current_os != "linux" &&
205-
current_os != "win") {
206-
cflags = [ "-Wstack-usage=8192" ]
207-
}
224+
config("warnings_third_party") {
225+
configs = [
226+
":warnings_common",
227+
":disabled_warnings",
228+
":disabled_warnings_third_party",
229+
]
208230
}
209231

210232
config("symbols_default") {

build_overrides/lwip.gni

+5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import("//build_overrides/build.gni")
16+
1517
declare_args() {
1618
# Root directory for lwIP.
1719
lwip_root = "//third_party/lwip"
1820
}
21+
22+
lwip_remove_configs = [ "${build_root}/config/compiler:warnings_default" ]
23+
lwip_add_configs = [ "${build_root}/config/compiler:warnings_third_party" ]

examples/build_overrides/lwip.gni

+5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import("//build_overrides/build.gni")
16+
1517
declare_args() {
1618
# Root directory for lwIP.
1719
lwip_root = "//third_party/connectedhomeip/third_party/lwip"
1820
}
21+
22+
lwip_remove_configs = [ "${build_root}/config/compiler:warnings_default" ]
23+
lwip_add_configs = [ "${build_root}/config/compiler:warnings_third_party" ]

third_party/lwip/lwip.gni

+6-13
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,6 @@ template("lwip_target") {
5353
lwip_6lowpan = false
5454
}
5555

56-
config("${lwip_target_name}_warnings") {
57-
cflags = [
58-
"-Wno-address",
59-
"-Wno-format",
60-
"-Wno-type-limits",
61-
"-Wno-unused-variable",
62-
"-Wno-maybe-uninitialized",
63-
"-Wno-format-type-confusion",
64-
]
65-
}
66-
6756
config("${lwip_target_name}_base_config") {
6857
include_dirs = [ "${lwip_root}/repo/lwip/src/include" ]
6958
}
@@ -212,8 +201,12 @@ template("lwip_target") {
212201
sources += [ "${_lwip_root}/src/netif/lowpan6.c" ]
213202
}
214203

215-
# Relax warnings for third_party code.
216-
configs += [ ":${lwip_target_name}_warnings" ]
204+
if (defined(lwip_remove_configs)) {
205+
configs -= lwip_remove_configs
206+
}
207+
if (defined(lwip_add_configs)) {
208+
configs += lwip_add_configs
209+
}
217210

218211
public_configs += [ ":${lwip_target_name}_base_config" ]
219212
}

0 commit comments

Comments
 (0)