From dec6561e046ca6f7362a1388d1dfb0205250dfae Mon Sep 17 00:00:00 2001 From: Venetia Furtado Date: Thu, 23 Mar 2023 10:40:25 -0600 Subject: [PATCH] cjdns: pass for dangling pointer warning Maintainer: @wfleurant Compile tested: builds for x86_64 Run tested: Build only testing Description: same build error seen on my machine as seen in #958 Fix proposed is similar to #738 Signed-off-by: Venetia Furtado --- cjdns/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjdns/Makefile b/cjdns/Makefile index 1f8592b..67353af 100644 --- a/cjdns/Makefile +++ b/cjdns/Makefile @@ -81,7 +81,7 @@ define Build/Compile CC="$(TARGET_CC)" \ AR="$(TARGET_AR)" \ RANLIB="$(TARGET_RANLIB)" \ - CFLAGS="$(TARGET_CFLAGS) -U_FORTIFY_SOURCE -Wno-error=array-bounds -Wno-error=stringop-overflow -Wno-error=stringop-overread" \ + CFLAGS="$(TARGET_CFLAGS) -U_FORTIFY_SOURCE -Wno-error=array-bounds -Wno-error=stringop-overflow -Wno-error=stringop-overread -Wno-error=dangling-pointer" \ LDFLAGS="$(TARGET_LDFLAGS)" \ SYSTEM="linux" \ TARGET_ARCH="$(CONFIG_ARCH)" \