Lines Matching full:warnings
8 It unconditionally enables a bunch of warnings we don't want, which
32 --enable-compile-warnings=[no/yes/error]
112 dnl -Wcast-function-type warnings. This warning is present in gcc >= 8. This
128 + [AS_HELP_STRING([--enable-Werror], [Treat compiler warnings as errors.])]
172 -# Check for the presence of an --enable-compile-warnings option to
177 -# Depending on the value of --enable-compile-warnings, different compiler
178 -# warnings are checked to see if they work with the current compiler and,
180 -# allows a consistent set of baseline compiler warnings to be used across
181 -# a code base, irrespective of any warnings enabled locally by individual
182 -# developers. By standardising the warnings used by all developers of a
183 -# project, the project can commit to a zero-warnings policy, using -Werror
184 -# to prevent compilation if new warnings are introduced. This makes
185 -# catching bugs which are flagged by warnings a lot easier.
187 -# By providing a consistent --enable-compile-warnings argument across all
191 -# argument to unconditionally prevent warnings being fatal.
193 -# --enable-compile-warnings can take the values:
195 -# * no: Base compiler warnings only; not even -Wall.
196 -# * yes: The above, plus a broad range of useful warnings.
197 -# * error: The above, plus -Werror so that all warnings are fatal.
199 -# warnings.
203 -# appended to the output variable if --enable-compile-warnings is not
206 -# compiler warnings on code, using warnings which have been chosen for low
247 -# --enable-compile-warnings configure option. For finer grained control
279 - # before AC_PROG_CXX, which would otherwise cause no C++ warnings to be
291 - AC_ARG_ENABLE([compile-warnings],
292 - AS_HELP_STRING([--enable-compile-warnings=@<:@no/yes/error@:>@],
293 - [Enable compiler warnings and errors]),,
299 - [Unconditionally make all compiler warnings non-fatal]),,
637 - AX_CHECK_LINK_FLAG([-Wl,--fatal-warnings], [
638 - ax_compiler_flags_fatal_warnings_option="-Wl,--fatal-warnings"