diff options
author | Pedro Alves <palves@redhat.com> | 2015-11-19 14:32:54 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-11-19 14:32:54 +0000 |
commit | 9a0847060d5823ec520ebf0c3e307e26442e5b8c (patch) | |
tree | 6a8325664b122b75605901d1cf16266353e7ea79 /gdb/configure.ac | |
parent | dad44a1fbaa460e5ff80ce203196bc1c1317dc60 (diff) | |
download | gdb-9a0847060d5823ec520ebf0c3e307e26442e5b8c.zip gdb-9a0847060d5823ec520ebf0c3e307e26442e5b8c.tar.gz gdb-9a0847060d5823ec520ebf0c3e307e26442e5b8c.tar.bz2 |
[C++] Default to -Werror in C++ mode too
Both x86_64 GNU/Linux and x86_64 mingw-w64 build cleanly with
--enable-targets=all. This enables -Werror by default in C++ mode
too, in order to let the buildbot catch C++ build regressions for us.
gdb/ChangeLog:
2015-11-19 Pedro Alves <palves@redhat.com>
* configure.ac (ERROR_ON_WARNING): Don't check whether in C++
mode.
* configure: Regenerate.
gdb/gdbserver/ChangeLog:
2015-11-19 Pedro Alves <palves@redhat.com>
* configure.ac (ERROR_ON_WARNING): Don't check whether in C++
mode.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index 29d0b63..ebd797b 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1932,11 +1932,8 @@ AC_ARG_ENABLE(werror, *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;; esac]) -# Enable -Werror by default when using gcc in C mode. Leave it off -# for C++ until we're warning clean. Turn it off for releases. -if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" \ - && test x"$enable_build_with_cxx" != x"yes" \ - && $development; then +# Enable -Werror by default when using gcc. Turn it off for releases. +if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" && $development; then ERROR_ON_WARNING=yes fi |