1 # manywarnings.m4 serial 11
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.
37 # The effects of this macro depend on the current language (_AC_LANG).
38 AC_DEFUN([gl_MANYWARN_ALL_GCC],
39 [_AC_LANG_DISPATCH([$0], _AC_LANG, $@)])
41 # Specialization for _AC_LANG = C.
42 AC_DEFUN([gl_MANYWARN_ALL_GCC(C)],
46 dnl First, check for some issues that only occur when combining multiple
47 dnl gcc warning categories.
48 AC_REQUIRE([AC_PROG_CC])
49 if test -n "$GCC"; then
51 dnl Check if -W -Werror -Wno-missing-field-initializers is supported
52 dnl with the current $CC $CFLAGS $CPPFLAGS.
53 AC_MSG_CHECKING([whether -Wno-missing-field-initializers is supported])
54 AC_CACHE_VAL([gl_cv_cc_nomfi_supported], [
55 gl_save_CFLAGS="$CFLAGS"
56 CFLAGS="$CFLAGS -W -Werror -Wno-missing-field-initializers"
58 [AC_LANG_PROGRAM([[]], [[]])],
59 [gl_cv_cc_nomfi_supported=yes],
60 [gl_cv_cc_nomfi_supported=no])
61 CFLAGS="$gl_save_CFLAGS"])
62 AC_MSG_RESULT([$gl_cv_cc_nomfi_supported])
64 if test "$gl_cv_cc_nomfi_supported" = yes; then
65 dnl Now check whether -Wno-missing-field-initializers is needed
66 dnl for the { 0, } construct.
67 AC_MSG_CHECKING([whether -Wno-missing-field-initializers is needed])
68 AC_CACHE_VAL([gl_cv_cc_nomfi_needed], [
69 gl_save_CFLAGS="$CFLAGS"
70 CFLAGS="$CFLAGS -W -Werror"
75 typedef struct { int a; int b; } s_t;
81 [gl_cv_cc_nomfi_needed=no],
82 [gl_cv_cc_nomfi_needed=yes])
83 CFLAGS="$gl_save_CFLAGS"
85 AC_MSG_RESULT([$gl_cv_cc_nomfi_needed])
88 dnl Next, check if -Werror -Wuninitialized is useful with the
89 dnl user's choice of $CFLAGS; some versions of gcc warn that it
90 dnl has no effect if -O is not also used
91 AC_MSG_CHECKING([whether -Wuninitialized is supported])
92 AC_CACHE_VAL([gl_cv_cc_uninitialized_supported], [
93 gl_save_CFLAGS="$CFLAGS"
94 CFLAGS="$CFLAGS -Werror -Wuninitialized"
96 [AC_LANG_PROGRAM([[]], [[]])],
97 [gl_cv_cc_uninitialized_supported=yes],
98 [gl_cv_cc_uninitialized_supported=no])
99 CFLAGS="$gl_save_CFLAGS"])
100 AC_MSG_RESULT([$gl_cv_cc_uninitialized_supported])
104 # List all gcc warning categories.
105 # To compare this list to your installed GCC's, run this Bash command:
108 # <(sed -n 's/^ *\(-[^ ]*\) .*/\1/p' manywarnings.m4 | sort) \
109 # <(gcc --help=warnings | sed -n 's/^ \(-[^ ]*\) .*/\1/p' | sort |
110 # grep -v -x -F -f <(
111 # awk '/^[^#]/ {print $1}' ../build-aux/gcc-warning.spec))
114 for gl_manywarn_item in -fno-common \
118 -Waggressive-loop-optimizations \
121 -Wbad-function-cast \
124 -Wbuiltin-declaration-mismatch \
125 -Wbuiltin-macro-redefined \
132 -Wcoverage-mismatch \
137 -Wdeprecated-declarations \
139 -Wdisabled-optimization \
140 -Wdiscarded-array-qualifiers \
141 -Wdiscarded-qualifiers \
144 -Wduplicated-branches \
146 -Wduplicate-decl-specifier \
150 -Wexpansion-to-defined \
152 -Wformat-contains-nul \
153 -Wformat-extra-args \
154 -Wformat-nonliteral \
156 -Wformat-signedness \
158 -Wformat-zero-length \
160 -Wfree-nonheap-object \
162 -Wignored-attributes \
163 -Wignored-qualifiers \
165 -Wimplicit-function-declaration \
167 -Wincompatible-pointer-types \
171 -Wint-in-bool-context \
172 -Wint-to-pointer-cast \
173 -Winvalid-memory-model \
176 -Wlogical-not-parentheses \
179 -Wmaybe-uninitialized \
181 -Wmemset-transposed-args \
182 -Wmisleading-indentation \
184 -Wmissing-declarations \
185 -Wmissing-field-initializers \
186 -Wmissing-include-dirs \
187 -Wmissing-parameter-type \
188 -Wmissing-prototypes \
196 -Wold-style-declaration \
197 -Wold-style-definition \
200 -Woverlength-strings \
203 -Wpacked-bitfield-compat \
208 -Wpointer-to-int-cast \
212 -Wreturn-local-addr \
214 -Wscalar-storage-order \
217 -Wshift-count-negative \
218 -Wshift-count-overflow \
219 -Wshift-negative-value \
220 -Wsizeof-array-argument \
221 -Wsizeof-pointer-memaccess \
225 -Wstrict-prototypes \
226 -Wsuggest-attribute=const \
227 -Wsuggest-attribute=format \
228 -Wsuggest-attribute=noreturn \
229 -Wsuggest-attribute=pure \
230 -Wsuggest-final-methods \
231 -Wsuggest-final-types \
235 -Wswitch-unreachable \
238 -Wtautological-compare \
244 -Wunsafe-loop-optimizations \
246 -Wunused-but-set-parameter \
247 -Wunused-but-set-variable \
250 -Wunused-local-typedefs \
258 -Wvector-operation-performance \
260 -Wvolatile-register-var \
264 gl_manywarn_set="$gl_manywarn_set $gl_manywarn_item"
267 # gcc --help=warnings outputs an unusual form for these options; list
268 # them here so that the above 'comm' command doesn't report a false match.
269 # Would prefer "min (PTRDIFF_MAX, SIZE_MAX)", but it must be a literal
270 # and AC_COMPUTE_INT requires it to fit in a long:
271 AC_MSG_CHECKING([max safe object size])
272 AC_COMPUTE_INT([gl_alloc_max],
273 [(LONG_MAX < PTRDIFF_MAX ? LONG_MAX : PTRDIFF_MAX) < (size_t) -1
274 ? (LONG_MAX < PTRDIFF_MAX ? LONG_MAX : PTRDIFF_MAX)
276 [[#include <limits.h>
280 [gl_alloc_max=2147483647])
281 AC_MSG_RESULT([$gl_alloc_max])
282 gl_manywarn_set="$gl_manywarn_set -Walloc-size-larger-than=$gl_alloc_max"
283 gl_manywarn_set="$gl_manywarn_set -Warray-bounds=2"
284 gl_manywarn_set="$gl_manywarn_set -Wformat-overflow=2"
285 gl_manywarn_set="$gl_manywarn_set -Wformat-truncation=2"
286 gl_manywarn_set="$gl_manywarn_set -Wimplicit-fallthrough=5"
287 gl_manywarn_set="$gl_manywarn_set -Wnormalized=nfc"
288 gl_manywarn_set="$gl_manywarn_set -Wshift-overflow=2"
289 gl_manywarn_set="$gl_manywarn_set -Wstringop-overflow=2"
290 gl_manywarn_set="$gl_manywarn_set -Wunused-const-variable=2"
291 gl_manywarn_set="$gl_manywarn_set -Wvla-larger-than=4031"
293 # These are needed for older GCC versions.
294 if test -n "$GCC"; then
295 case `($CC --version) 2>/dev/null` in
296 'gcc (GCC) '[[0-3]].* | \
297 'gcc (GCC) '4.[[0-7]].*)
298 gl_manywarn_set="$gl_manywarn_set -fdiagnostics-show-option"
299 gl_manywarn_set="$gl_manywarn_set -funit-at-a-time"
304 # Disable specific options as needed.
305 if test "$gl_cv_cc_nomfi_needed" = yes; then
306 gl_manywarn_set="$gl_manywarn_set -Wno-missing-field-initializers"
309 if test "$gl_cv_cc_uninitialized_supported" = no; then
310 gl_manywarn_set="$gl_manywarn_set -Wno-uninitialized"
318 # Specialization for _AC_LANG = C++.
319 AC_DEFUN([gl_MANYWARN_ALL_GCC(C++)],
321 gl_MANYWARN_ALL_GCC_CXX_IMPL([$1])