1 # manywarnings-c++.m4 serial 3
2 dnl Copyright (C) 2008-2020 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 # Implementation of the specialization of gl_MANYWARN_ALL_GCC
9 AC_DEFUN([gl_MANYWARN_ALL_GCC_CXX_IMPL],
13 dnl First, check for some issues that only occur when combining multiple
14 dnl gcc warning categories.
15 AC_REQUIRE([AC_PROG_CXX])
16 if test -n "$GXX"; then
18 dnl Check if -W -Werror -Wno-missing-field-initializers is supported
19 dnl with the current $CXX $CXXFLAGS $CPPFLAGS.
20 AC_CACHE_CHECK([whether -Wno-missing-field-initializers is supported],
21 [gl_cv_cxx_nomfi_supported],
22 [gl_save_CXXFLAGS="$CXXFLAGS"
23 CXXFLAGS="$CXXFLAGS -W -Werror -Wno-missing-field-initializers"
25 [AC_LANG_PROGRAM([[]], [[]])],
26 [gl_cv_cxx_nomfi_supported=yes],
27 [gl_cv_cxx_nomfi_supported=no])
28 CXXFLAGS="$gl_save_CXXFLAGS"
31 if test "$gl_cv_cxx_nomfi_supported" = yes; then
32 dnl Now check whether -Wno-missing-field-initializers is needed
33 dnl for the { 0, } construct.
34 AC_CACHE_CHECK([whether -Wno-missing-field-initializers is needed],
35 [gl_cv_cxx_nomfi_needed],
36 [gl_save_CXXFLAGS="$CXXFLAGS"
37 CXXFLAGS="$CXXFLAGS -W -Werror"
42 typedef struct { int a; int b; } s_t;
48 [gl_cv_cxx_nomfi_needed=no],
49 [gl_cv_cxx_nomfi_needed=yes])
50 CXXFLAGS="$gl_save_CXXFLAGS"
54 dnl Next, check if -Werror -Wuninitialized is useful with the
55 dnl user's choice of $CXXFLAGS; some versions of gcc warn that it
56 dnl has no effect if -O is not also used
57 AC_CACHE_CHECK([whether -Wuninitialized is supported],
58 [gl_cv_cxx_uninitialized_supported],
59 [gl_save_CXXFLAGS="$CXXFLAGS"
60 CXXFLAGS="$CXXFLAGS -Werror -Wuninitialized"
62 [AC_LANG_PROGRAM([[]], [[]])],
63 [gl_cv_cxx_uninitialized_supported=yes],
64 [gl_cv_cxx_uninitialized_supported=no])
65 CXXFLAGS="$gl_save_CXXFLAGS"
70 # List all gcc warning categories.
71 # To compare this list to your installed GCC's, run this Bash command:
74 # <(sed -n 's/^ *\(-[^ ]*\) .*/\1/p' manywarnings-c++.m4 | sort) \
75 # <(gcc --help=warnings | sed -n 's/^ \(-[^ ]*\) .*/\1/p' | sort |
77 # awk '/^[^#]/ {print $1}' ../build-aux/g++-warning.spec))
80 for gl_manywarn_item in \
84 -Waggressive-loop-optimizations \
88 -Wbuiltin-macro-redefined \
94 -Wconditionally-supported \
100 -Wdelete-incomplete \
101 -Wdelete-non-virtual-dtor \
103 -Wdeprecated-declarations \
104 -Wdisabled-optimization \
112 -Wformat-contains-nul \
113 -Wformat-extra-args \
114 -Wformat-nonliteral \
116 -Wformat-signedness \
118 -Wformat-zero-length \
119 -Wfree-nonheap-object \
120 -Wignored-qualifiers \
121 -Winherited-variadic-ctor \
124 -Wint-to-pointer-cast \
125 -Winvalid-memory-model \
129 -Wlogical-not-parentheses \
132 -Wmaybe-uninitialized \
133 -Wmemset-transposed-args \
135 -Wmissing-declarations \
136 -Wmissing-field-initializers \
137 -Wmissing-include-dirs \
141 -Wnon-template-friend \
148 -Woverlength-strings \
149 -Woverloaded-virtual \
151 -Wpacked-bitfield-compat \
157 -Wreturn-local-addr \
161 -Wshift-count-negative \
162 -Wshift-count-overflow \
164 -Wsized-deallocation \
165 -Wsizeof-array-argument \
166 -Wsizeof-pointer-memaccess \
169 -Wstrict-null-sentinel \
171 -Wsuggest-attribute=const \
172 -Wsuggest-attribute=format \
173 -Wsuggest-attribute=noreturn \
174 -Wsuggest-attribute=pure \
175 -Wsuggest-final-methods \
176 -Wsuggest-final-types \
187 -Wunsafe-loop-optimizations \
189 -Wunused-but-set-parameter \
190 -Wunused-but-set-variable \
193 -Wunused-local-typedefs \
202 -Wvector-operation-performance \
203 -Wvirtual-move-assign \
205 -Wvolatile-register-var \
207 -Wzero-as-null-pointer-constant \
210 gl_manywarn_set="$gl_manywarn_set $gl_manywarn_item"
213 # gcc --help=warnings outputs an unusual form for these options; list
214 # them here so that the above 'comm' command doesn't report a false match.
215 gl_manywarn_set="$gl_manywarn_set -Warray-bounds=2"
216 gl_manywarn_set="$gl_manywarn_set -Wnormalized=nfc"
217 gl_manywarn_set="$gl_manywarn_set -Wshift-overflow=2"
218 gl_manywarn_set="$gl_manywarn_set -Wunused-const-variable=2"
220 # These are needed for older GCC versions.
221 if test -n "$GXX"; then
222 case `($CXX --version) 2>/dev/null` in
223 'g++ (GCC) '[[0-3]].* | \
224 'g++ (GCC) '4.[[0-7]].*)
225 gl_manywarn_set="$gl_manywarn_set -fdiagnostics-show-option"
226 gl_manywarn_set="$gl_manywarn_set -funit-at-a-time"
231 # Disable specific options as needed.
232 if test "$gl_cv_cxx_nomfi_needed" = yes; then
233 gl_manywarn_set="$gl_manywarn_set -Wno-missing-field-initializers"
236 if test "$gl_cv_cxx_uninitialized_supported" = no; then
237 gl_manywarn_set="$gl_manywarn_set -Wno-uninitialized"