From: Remi Gacogne Date: Fri, 13 Oct 2023 10:37:27 +0000 (+0200) Subject: tasks: gcc 11.4 doesn't support `-Wstring-plus-int` X-Git-Tag: rec-5.0.0-beta1~23^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bf93da8f4cab8024d9015a223f1e57ffa619fb9;p=thirdparty%2Fpdns.git tasks: gcc 11.4 doesn't support `-Wstring-plus-int` --- diff --git a/tasks.py b/tasks.py index d6059666a2..5f14fad837 100644 --- a/tasks.py +++ b/tasks.py @@ -395,7 +395,7 @@ def get_cflags(): "-Werror=shadow", "-Wformat=2", "-Werror=format-security", - "-Werror=string-plus-int", + "-Werror=string-plus-int" if os.getenv('COMPILER', 'clang') == 'clang' else '', ])