2
0
mirror of https://github.com/cilynx/rtl88x2bu synced 2025-08-22 02:01:55 +00:00

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.
This commit is contained in:
Max Görner 2024-05-15 10:25:49 +02:00
parent 1bf156aaf1
commit 98275008fa

View File

@ -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