diff --git a/configure.ac b/configure.ac index f5a406a18885e2e7dbfc4c08e39722dd044916c3..5aca821754d42515577b5c9ff8781122a5bd5a50 100644 --- a/configure.ac +++ b/configure.ac @@ -243,6 +243,9 @@ if test "x$werror" != "xno"; then #AX_CHECK_COMPILE_FLAG([-Werror], [CXXFLAGS="$CXXFLAGS -Werror"]) AX_CHECK_COMPILE_FLAG([-Wformat-security], [CXXFLAGS="$CXXFLAGS -Wformat-security"]) AX_CHECK_COMPILE_FLAG([-Wsometimes-uninitialized], [CXXFLAGS="$CXXFLAGS -Wsometimes-uninitialized"]) + # Disable noexcept-type warning of g++-7. This is not harmful as + # long as all source files are compiled with the same compiler. + AX_CHECK_COMPILE_FLAG([-Wno-noexcept-type], [CXXFLAGS="$CXXFLAGS -Wno-noexcept-type"]) AC_LANG_POP() fi