1 # manywarnings-c++.m4 serial 2
2 dnl Copyright (C) 2008-2018 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_MSG_CHECKING([whether -Wno-missing-field-initializers is supported])
21 AC_CACHE_VAL([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"])
29 AC_MSG_RESULT([$gl_cv_cxx_nomfi_supported])
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_MSG_CHECKING([whether -Wno-missing-field-initializers is needed])
35 AC_CACHE_VAL([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"
52 AC_MSG_RESULT([$gl_cv_cxx_nomfi_needed])
55 dnl Next, check if -Werror -Wuninitialized is useful with the
56 dnl user's choice of $CXXFLAGS; some versions of gcc warn that it
57 dnl has no effect if -O is not also used
58 AC_MSG_CHECKING([whether -Wuninitialized is supported])
59 AC_CACHE_VAL([gl_cv_cxx_uninitialized_supported], [
60 gl_save_CXXFLAGS="$CXXFLAGS"
61 CXXFLAGS="$CXXFLAGS -Werror -Wuninitialized"
63 [AC_LANG_PROGRAM([[]], [[]])],
64 [gl_cv_cxx_uninitialized_supported=yes],
65 [gl_cv_cxx_uninitialized_supported=no])
66 CXXFLAGS="$gl_save_CXXFLAGS"])
67 AC_MSG_RESULT([$gl_cv_cxx_uninitialized_supported])
71 # List all gcc warning categories.
72 # To compare this list to your installed GCC's, run this Bash command:
75 # <(sed -n 's/^ *\(-[^ ]*\) .*/\1/p' manywarnings-c++.m4 | sort) \
76 # <(gcc --help=warnings | sed -n 's/^ \(-[^ ]*\) .*/\1/p' | sort |
78 # awk '/^[^#]/ {print $1}' ../build-aux/g++-warning.spec))
81 for gl_manywarn_item in \
86 -Waggressive-loop-optimizations \
90 -Wbuiltin-macro-redefined \
97 -Wconditionally-supported \
101 -Wctor-dtor-privacy \
103 -Wdelete-incomplete \
104 -Wdelete-non-virtual-dtor \
106 -Wdeprecated-declarations \
107 -Wdisabled-optimization \
115 -Wformat-contains-nul \
116 -Wformat-extra-args \
117 -Wformat-nonliteral \
119 -Wformat-signedness \
121 -Wformat-zero-length \
122 -Wfree-nonheap-object \
123 -Wignored-qualifiers \
124 -Winherited-variadic-ctor \
127 -Wint-to-pointer-cast \
128 -Winvalid-memory-model \
132 -Wlogical-not-parentheses \
135 -Wmaybe-uninitialized \
136 -Wmemset-transposed-args \
138 -Wmissing-declarations \
139 -Wmissing-field-initializers \
140 -Wmissing-include-dirs \
144 -Wnon-template-friend \
151 -Woverlength-strings \
152 -Woverloaded-virtual \
154 -Wpacked-bitfield-compat \
160 -Wreturn-local-addr \
164 -Wshift-count-negative \
165 -Wshift-count-overflow \
167 -Wsized-deallocation \
168 -Wsizeof-array-argument \
169 -Wsizeof-pointer-memaccess \
172 -Wstrict-null-sentinel \
174 -Wsuggest-attribute=const \
175 -Wsuggest-attribute=format \
176 -Wsuggest-attribute=noreturn \
177 -Wsuggest-attribute=pure \
178 -Wsuggest-final-methods \
179 -Wsuggest-final-types \
190 -Wunsafe-loop-optimizations \
192 -Wunused-but-set-parameter \
193 -Wunused-but-set-variable \
196 -Wunused-local-typedefs \
205 -Wvector-operation-performance \
206 -Wvirtual-move-assign \
208 -Wvolatile-register-var \
210 -Wzero-as-null-pointer-constant \
213 gl_manywarn_set="$gl_manywarn_set $gl_manywarn_item"
216 # gcc --help=warnings outputs an unusual form for these options; list
217 # them here so that the above 'comm' command doesn't report a false match.
218 gl_manywarn_set="$gl_manywarn_set -Warray-bounds=2"
219 gl_manywarn_set="$gl_manywarn_set -Wnormalized=nfc"
220 gl_manywarn_set="$gl_manywarn_set -Wshift-overflow=2"
221 gl_manywarn_set="$gl_manywarn_set -Wunused-const-variable=2"
223 # These are needed for older GCC versions.
224 if test -n "$GXX"; then
225 case `($CXX --version) 2>/dev/null` in
226 'g++ (GCC) '[[0-3]].* | \
227 'g++ (GCC) '4.[[0-7]].*)
228 gl_manywarn_set="$gl_manywarn_set -fdiagnostics-show-option"
229 gl_manywarn_set="$gl_manywarn_set -funit-at-a-time"
234 # Disable specific options as needed.
235 if test "$gl_cv_cxx_nomfi_needed" = yes; then
236 gl_manywarn_set="$gl_manywarn_set -Wno-missing-field-initializers"
239 if test "$gl_cv_cxx_uninitialized_supported" = no; then
240 gl_manywarn_set="$gl_manywarn_set -Wno-uninitialized"