Build: Use -Wvla with GCC if supported.

Variable-length arrays are mandatory in C99 but optional in C11.
The code doesn't currently use any VLAs and it shouldn't in the
future either to stay compatible with C11 without requiring any
optional C11 features.
This commit is contained in:
Lasse Collin 2013-04-27 22:07:46 +03:00
parent 8957c58609
commit 97379c5ea7
1 changed files with 1 additions and 0 deletions

View File

@ -653,6 +653,7 @@ if test "$GCC" = yes ; then
for NEW_FLAG in \
-Wall \
-Wextra \
-Wvla \
-Wformat=2 \
-Winit-self \
-Wmissing-include-dirs \