2
0
mirror of https://github.com/cilynx/rtl88x2bu synced 2025-08-30 05:47:47 +00:00

Disable -Werror=address

While some occasions were found by it and hopefully fixed, the issues in
the debug file are too numerous to fix by hand. Thus, this error is
silenced.
This commit is contained in:
Max Görner 2022-08-25 21:35:36 +02:00
parent fb0b1fd2c6
commit e61bba54d9

View File

@ -11,6 +11,7 @@ EXTRA_CFLAGS += -Wno-unused-function
EXTRA_CFLAGS += -Wno-unused-parameter
EXTRA_CFLAGS += -Wno-unused-variable
EXTRA_CFLAGS += -Wno-array-bounds
EXTRA_CFLAGS += -Wno-address
GCC_VER_49 := $(shell echo `$(CC) -dumpversion | cut -f1-2 -d.` \>= 4.9 | bc )
ifeq ($(GCC_VER_49),1)