From 98275008fa5ec4f99c8ce73f79ec6e80c3d5d435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20G=C3=B6rner?= <5477952+MaxG87@users.noreply.github.com> Date: Wed, 15 May 2024 10:25:49 +0200 Subject: [PATCH] Suppress stringop-overread GCC 13 complains about this. The committer does not have got enough expertise to know how to fix that. Even the in the Linux kernel itself there are no fixes that fit our case. Therefore, the error gets suppressed. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c425db5..9a160e1 100755 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ EXTRA_CFLAGS += -Wno-type-limits EXTRA_CFLAGS += -Wno-unused-function EXTRA_CFLAGS += -Wno-unused-parameter EXTRA_CFLAGS += -Wno-unused-variable +EXTRA_CFLAGS += -Wno-stringop-overread EXTRA_CFLAGS += -Wno-array-bounds EXTRA_CFLAGS += -Wno-address EXTRA_CFLAGS += -Wno-missing-prototypes