From e0e36dfabdec684f765814555c0c9aa55a75b008 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 24 Jun 2019 01:32:03 -0600 Subject: [PATCH] configure: Add -Wno-unknown-warning-option for clang only for GCC conflict noise. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 14bc1c50d..ffadf8e2b 100644 --- a/configure.ac +++ b/configure.ac @@ -682,6 +682,7 @@ AM_COND_IF([CLANG], [ CHARYBDIS_C_GCC_TRY_FLAGS([-Wno-mismatched-tags], charybdis_cv_c_gcc_w_mismatched_tags) CHARYBDIS_C_GCC_TRY_FLAGS([-Wno-format-security], charybdis_cv_c_gcc_w_format_security) + CHARYBDIS_C_GCC_TRY_FLAGS([-Wno-unknown-warning-option], charybdis_cv_c_gcc_w_unknown_warning_option) ],[]) ])