1 # manywarnings.m4 serial 8
2 dnl Copyright (C) 2008-2017 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 dnl From Simon Josefsson
9 # gl_MANYWARN_COMPLEMENT(OUTVAR, LISTVAR, REMOVEVAR)
10 # --------------------------------------------------
11 # Copy LISTVAR to OUTVAR except for the entries in REMOVEVAR.
12 # Elements separated by whitespace. In set logic terms, the function
13 # does OUTVAR = LISTVAR \ REMOVEVAR.
14 AC_DEFUN([gl_MANYWARN_COMPLEMENT],
24 gl_warn_set="$gl_warn_set $gl_warn_item"
31 # gl_MANYWARN_ALL_GCC(VARIABLE)
32 # -----------------------------
33 # Add all documented GCC warning parameters to variable VARIABLE.
34 # Note that you need to test them using gl_WARN_ADD if you want to
35 # make sure your gcc understands it.
36 AC_DEFUN([gl_MANYWARN_ALL_GCC],
38 dnl First, check for some issues that only occur when combining multiple
39 dnl gcc warning categories.
40 AC_REQUIRE([AC_PROG_CC])
41 if test -n "$GCC"; then
43 dnl Check if -W -Werror -Wno-missing-field-initializers is supported
44 dnl with the current $CC $CFLAGS $CPPFLAGS.
45 AC_MSG_CHECKING([whether -Wno-missing-field-initializers is supported])
46 AC_CACHE_VAL([gl_cv_cc_nomfi_supported], [
47 gl_save_CFLAGS="$CFLAGS"
48 CFLAGS="$CFLAGS -W -Werror -Wno-missing-field-initializers"
50 [AC_LANG_PROGRAM([[]], [[]])],
51 [gl_cv_cc_nomfi_supported=yes],
52 [gl_cv_cc_nomfi_supported=no])
53 CFLAGS="$gl_save_CFLAGS"])
54 AC_MSG_RESULT([$gl_cv_cc_nomfi_supported])
56 if test "$gl_cv_cc_nomfi_supported" = yes; then
57 dnl Now check whether -Wno-missing-field-initializers is needed
58 dnl for the { 0, } construct.
59 AC_MSG_CHECKING([whether -Wno-missing-field-initializers is needed])
60 AC_CACHE_VAL([gl_cv_cc_nomfi_needed], [
61 gl_save_CFLAGS="$CFLAGS"
62 CFLAGS="$CFLAGS -W -Werror"
67 typedef struct { int a; int b; } s_t;
73 [gl_cv_cc_nomfi_needed=no],
74 [gl_cv_cc_nomfi_needed=yes])
75 CFLAGS="$gl_save_CFLAGS"
77 AC_MSG_RESULT([$gl_cv_cc_nomfi_needed])
80 dnl Next, check if -Werror -Wuninitialized is useful with the
81 dnl user's choice of $CFLAGS; some versions of gcc warn that it
82 dnl has no effect if -O is not also used
83 AC_MSG_CHECKING([whether -Wuninitialized is supported])
84 AC_CACHE_VAL([gl_cv_cc_uninitialized_supported], [
85 gl_save_CFLAGS="$CFLAGS"
86 CFLAGS="$CFLAGS -Werror -Wuninitialized"
88 [AC_LANG_PROGRAM([[]], [[]])],
89 [gl_cv_cc_uninitialized_supported=yes],
90 [gl_cv_cc_uninitialized_supported=no])
91 CFLAGS="$gl_save_CFLAGS"])
92 AC_MSG_RESULT([$gl_cv_cc_uninitialized_supported])
96 # List all gcc warning categories.
97 # To compare this list to your installed GCC's, run this Bash command:
100 # <(sed -n 's/^ *\(-[^ ]*\) .*/\1/p' manywarnings.m4 | sort) \
101 # <(gcc --help=warnings | sed -n 's/^ \(-[^ ]*\) .*/\1/p' | sort |
103 # awk '/^[^#]/ {print $1}' ../build-aux/gcc-warning.spec))
106 for gl_manywarn_item in \
111 -Waggressive-loop-optimizations \
114 -Wbad-function-cast \
116 -Wbuiltin-macro-redefined \
123 -Wcoverage-mismatch \
127 -Wdeprecated-declarations \
129 -Wdisabled-optimization \
130 -Wdiscarded-array-qualifiers \
131 -Wdiscarded-qualifiers \
139 -Wformat-contains-nul \
140 -Wformat-extra-args \
141 -Wformat-nonliteral \
143 -Wformat-signedness \
145 -Wformat-zero-length \
147 -Wfree-nonheap-object \
149 -Wignored-attributes \
150 -Wignored-qualifiers \
152 -Wimplicit-function-declaration \
154 -Wincompatible-pointer-types \
158 -Wint-to-pointer-cast \
159 -Winvalid-memory-model \
162 -Wlogical-not-parentheses \
165 -Wmaybe-uninitialized \
166 -Wmemset-transposed-args \
167 -Wmisleading-indentation \
169 -Wmissing-declarations \
170 -Wmissing-field-initializers \
171 -Wmissing-include-dirs \
172 -Wmissing-parameter-type \
173 -Wmissing-prototypes \
181 -Wold-style-declaration \
182 -Wold-style-definition \
185 -Woverlength-strings \
188 -Wpacked-bitfield-compat \
192 -Wpointer-to-int-cast \
194 -Wreturn-local-addr \
196 -Wscalar-storage-order \
199 -Wshift-count-negative \
200 -Wshift-count-overflow \
201 -Wshift-negative-value \
202 -Wsizeof-array-argument \
203 -Wsizeof-pointer-memaccess \
207 -Wstrict-prototypes \
208 -Wsuggest-attribute=const \
209 -Wsuggest-attribute=format \
210 -Wsuggest-attribute=noreturn \
211 -Wsuggest-attribute=pure \
212 -Wsuggest-final-methods \
213 -Wsuggest-final-types \
219 -Wtautological-compare \
225 -Wunsafe-loop-optimizations \
227 -Wunused-but-set-parameter \
228 -Wunused-but-set-variable \
231 -Wunused-local-typedefs \
239 -Wvector-operation-performance \
241 -Wvolatile-register-var \
245 gl_manywarn_set="$gl_manywarn_set $gl_manywarn_item"
248 # gcc --help=warnings outputs an unusual form for these options; list
249 # them here so that the above 'comm' command doesn't report a false match.
250 gl_manywarn_set="$gl_manywarn_set -Warray-bounds=2"
251 gl_manywarn_set="$gl_manywarn_set -Wnormalized=nfc"
252 gl_manywarn_set="$gl_manywarn_set -Wshift-overflow=2"
253 gl_manywarn_set="$gl_manywarn_set -Wunused-const-variable=2"
255 # These are needed for older GCC versions.
256 if test -n "$GCC"; then
257 case `($CC --version) 2>/dev/null` in
258 'gcc (GCC) '[[0-3]].* | \
259 'gcc (GCC) '4.[[0-7]].*)
260 gl_manywarn_set="$gl_manywarn_set -fdiagnostics-show-option"
261 gl_manywarn_set="$gl_manywarn_set -funit-at-a-time"
266 # Disable specific options as needed.
267 if test "$gl_cv_cc_nomfi_needed" = yes; then
268 gl_manywarn_set="$gl_manywarn_set -Wno-missing-field-initializers"
271 if test "$gl_cv_cc_uninitialized_supported" = no; then
272 gl_manywarn_set="$gl_manywarn_set -Wno-uninitialized"