From 961cf955d278e432b7c3788217b89872dac862c4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 19 Aug 2024 00:22:38 +0200 Subject: [PATCH] Hide warnings caused by glibmm/helperlist.h declutter build log --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index a10fceeb11..f5aa95d68f 100644 --- a/wscript +++ b/wscript @@ -71,7 +71,7 @@ compiler_flags_dictionaries= { # Any additional flags for warnings that are specific to C (not C++) 'extra-c-warnings' : [ '-Wstrict-prototypes', '-Wmissing-prototypes' ], # Any additional flags for warnings that are specific to C++ (not C) - 'extra-cxx-warnings' : [ '-Woverloaded-virtual', '-Wno-unused-local-typedefs' ], + 'extra-cxx-warnings' : [ '-Woverloaded-virtual', '-Wno-unused-local-typedefs', '-Wno-deprecated-copy' ], # Flags used for "strict" compilation, C and C++ (i.e. compiler will warn about language issues) 'strict' : ['-Wall', '-Wcast-align', '-Wextra', '-Wwrite-strings', '-Wunsafe-loop-optimizations', '-Wlogical-op' ], # Flags used for "strict" compilation, C only (i.e. compiler will warn about language issues)