From 18add294721e07ee776387f1520ccf3b0e6c7a5c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 12 Nov 2017 18:48:40 +0100 Subject: configure.ac: disable -Wnoexcept-type Workaround for #146. --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 1be67c11b..5249044f0 100644 --- a/configure.ac +++ b/configure.ac @@ -1385,6 +1385,11 @@ then AX_APPEND_COMPILE_FLAGS([-Wcast-qual]) AX_APPEND_COMPILE_FLAGS([-Wwrite-strings]) AX_APPEND_COMPILE_FLAGS([-Wsign-compare]) + + dnl This GCC8 warning for C++17 ABI compatibility is of no + dnl interest for us, because we're not a shared library. + AX_APPEND_COMPILE_FLAGS([-Wno-noexcept-type]) + AC_LANG_POP fi -- cgit v1.2.3