elfutils: Pass -Wno-unused-result to silence warnings as errors
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 22 May 2017 23:08:57 +0000 (16:08 -0700)
committerJo-Philipp Wich <jo@mein.io>
Wed, 13 Dec 2017 14:43:49 +0000 (15:43 +0100)
elfutils turns on -Werror by default, and patch 100-musl-compat.patch
changes how strerror_r is used and we no longer use the function's
return value. This causes the following build error/warning to occur
with glibc-based toolchains:

dwfl_error.c: In function 'dwfl_errmsg':
dwfl_error.c:158:18: error: ignoring return value of 'strerror_r',
declared with attribute warn_unused_result [-Werror=unused-result]
       strerror_r (error & 0xffff, s, sizeof(s));
                  ^
cc1: all warnings being treated as errors

Fixing this would be tricky as there are two possible signatures for
strerror_r (XSI and GNU), just turn off unused-result warnings instead.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
(cherry picked from commit 484f768dfa295d9fccd82c57cae00458f32b7182)

package/libs/elfutils/Makefile

index d764970c289332c6758da47695cb2f9f588bc7dd..869513f16f218c3372edc89c63160037342790e2 100644 (file)
@@ -68,7 +68,7 @@ endif
 CONFIGURE_ARGS += \
        --without-lzma
 
-TARGET_CFLAGS += -D_GNU_SOURCE
+TARGET_CFLAGS += -D_GNU_SOURCE -Wno-unused-result
 
 define Build/InstallDev
        $(INSTALL_DIR) $(1)/usr/include