From e61bba54d9631bffeacaa60bea954f3d1a03fac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20G=C3=B6rner?= <5477952+MaxG87@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:35:36 +0200 Subject: [PATCH] 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. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index db890fa..b06bbbe 100755 --- a/Makefile +++ b/Makefile @@ -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)