From a02eb31697cd977f3587f42bb09b8a9ebcca7a4b Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 30 Mar 2011 23:21:50 +0100 Subject: elfutils: fix builds with gcc 4.6 gcc 4.6 (as used in Fedora 15) adds some extra warnings which are included with Werror. The new unused-but-set variable warning causes an error in libasm of elfutils. Work around this by removing unused-but-set from Werror. Signed-off-by: Joshua Lock --- meta/recipes-devtools/elfutils/elfutils_0.148.bb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/recipes-devtools/elfutils') diff --git a/meta/recipes-devtools/elfutils/elfutils_0.148.bb b/meta/recipes-devtools/elfutils/elfutils_0.148.bb index b2f700ede7..c395be81dc 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.148.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.148.bb @@ -40,6 +40,10 @@ SRC_URI += "\ inherit autotools +# GCC 4.6.0 raises an unused-but-set warning in libasm, for now remove +# this warning from Werror +CFLAGS_virtclass-native += "-Wno-error=unused-but-set-variable" + EXTRA_OECONF = "--program-prefix=eu-" do_configure_prepend() { -- cgit 1.2.3-korg