1 # manywarnings.m4 serial 5
2 dnl Copyright (C) 2008-2013 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;
72 [gl_cv_cc_nomfi_needed=no],
73 [gl_cv_cc_nomfi_needed=yes])
74 CFLAGS="$gl_save_CFLAGS"
76 AC_MSG_RESULT([$gl_cv_cc_nomfi_needed])
79 dnl Next, check if -Werror -Wuninitialized is useful with the
80 dnl user's choice of $CFLAGS; some versions of gcc warn that it
81 dnl has no effect if -O is not also used
82 AC_MSG_CHECKING([whether -Wuninitialized is supported])
83 AC_CACHE_VAL([gl_cv_cc_uninitialized_supported], [
84 gl_save_CFLAGS="$CFLAGS"
85 CFLAGS="$CFLAGS -Werror -Wuninitialized"
87 [AC_LANG_PROGRAM([[]], [[]])],
88 [gl_cv_cc_uninitialized_supported=yes],
89 [gl_cv_cc_uninitialized_supported=no])
90 CFLAGS="$gl_save_CFLAGS"])
91 AC_MSG_RESULT([$gl_cv_cc_uninitialized_supported])
95 # List all gcc warning categories.
97 for gl_manywarn_item in \
104 -Wbad-function-cast \
105 -Wbuiltin-macro-redefined \
111 -Wcoverage-mismatch \
114 -Wdeprecated-declarations \
115 -Wdisabled-optimization \
122 -Wformat-contains-nul \
123 -Wformat-extra-args \
124 -Wformat-nonliteral \
127 -Wformat-zero-length \
129 -Wfree-nonheap-object \
130 -Wignored-qualifiers \
132 -Wimplicit-function-declaration \
136 -Wint-to-pointer-cast \
137 -Winvalid-memory-model \
142 -Wmaybe-uninitialized \
144 -Wmissing-declarations \
145 -Wmissing-field-initializers \
146 -Wmissing-format-attribute \
147 -Wmissing-include-dirs \
149 -Wmissing-parameter-type \
150 -Wmissing-prototypes \
157 -Wold-style-declaration \
158 -Wold-style-definition \
160 -Woverlength-strings \
163 -Wpacked-bitfield-compat \
167 -Wpointer-to-int-cast \
172 -Wsizeof-pointer-memaccess \
176 -Wstrict-prototypes \
177 -Wsuggest-attribute=const \
178 -Wsuggest-attribute=format \
179 -Wsuggest-attribute=noreturn \
180 -Wsuggest-attribute=pure \
191 -Wunsafe-loop-optimizations \
193 -Wunused-but-set-parameter \
194 -Wunused-but-set-variable \
197 -Wunused-local-typedefs \
205 -Wvector-operation-performance \
207 -Wvolatile-register-var \
211 gl_manywarn_set="$gl_manywarn_set $gl_manywarn_item"
214 # Disable specific options as needed.
215 if test "$gl_cv_cc_nomfi_needed" = yes; then
216 gl_manywarn_set="$gl_manywarn_set -Wno-missing-field-initializers"
219 if test "$gl_cv_cc_uninitialized_supported" = no; then
220 gl_manywarn_set="$gl_manywarn_set -Wno-uninitialized"