From: Andi Kleen <[email protected]> My opensuse libbfd requires libz and libiberty. perf was not adding that for the bfd check, so the bfd check was always failing.
Always add -lz and -liberty to BFD Signed-off-by: Andi Kleen <[email protected]> --- tools/perf/config/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index 40a41c6..ec94f59 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile @@ -360,10 +360,10 @@ else endif endif -FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd +FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd -liberty -lz has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd) ifeq ($(has_bfd),y) - EXTLIBS += -lbfd + EXTLIBS += -lbfd -liberty -lz CFLAGS += -DLIBBFD_SUPPORT endif -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

