summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-12-11 16:24:42 +0100
committerThomas Haller <thaller@redhat.com>2017-12-15 11:48:38 +0100
commit9c3402aa1e145420b868359e993b0a38ae9a6408 (patch)
tree5d943fe17584065919661a8df4d0edce753c6c2e
parent96ae9309e7204757987263a5ba49e5a7a1b7c031 (diff)
downloadNetworkManager-9c3402aa1e145420b868359e993b0a38ae9a6408.tar.gz
build: add "-Wvla" to warn about uses of variable-length arrays
We don't use them, so add a compiler warning about their use. I think they are annoying, because sizeof(x) and typeof(x) might evaluate at runtime. Especially the typeof() extension is useful for macros, but behaves badly with variable-length arrays due to running code at runtime. But the worst is, G_STATIC_ASSERT() is implemented by declaring an array of negative length. Usually, the checked condition should be a compile time constant, but with VLAs the compiler would not evaluate the static-assert at compile time and instead accept it silently. It's easy to mess up static asserts to wrongly have a non-constant condition, especially when the static-assert is used inside a macro. Just say no.
-rw-r--r--m4/compiler_options.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/m4/compiler_options.m4 b/m4/compiler_options.m4
index ccb51f5e6e..c0b07e5b4b 100644
--- a/m4/compiler_options.m4
+++ b/m4/compiler_options.m4
@@ -79,6 +79,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
-Wshift-negative-value \
-Wstrict-prototypes \
-Wundef \
+ -Wvla \
-Wno-duplicate-decl-specifier \
-Wno-format-truncation \
-Wno-format-y2k \