]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
perf tools: bfd.h/libbfd detection fails with recent binutils
authorMarkus Trippelsdorf <markus@trippelsdorf.de>
Wed, 19 Sep 2012 07:29:02 +0000 (09:29 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 24 Sep 2012 15:05:02 +0000 (12:05 -0300)
With recent binutils I get:

 perf % make
Makefile:668: No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demanglin

That happens because bfd.h now contains:

I've reopened a bug in the hope that this check will be deleted:
http://sourceware.org/bugzilla/show_bug.cgi?id=14243

But in the meantime, the following patch fixes the problem

Signed-off-by: Markus Trippelsdorf <markus@trippelsdorf.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Paul Mackerras <paulus@samba.org>
Link: http://lkml.kernel.org/r/20120919072902.GA262@x4
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/Makefile
tools/perf/util/symbol.h

index 3ae6a59635ca1a3f8de44b48f033ce69b534384c..251dcd7fb5acbb90f9206f4707509bfba9778f8a 100644 (file)
@@ -715,7 +715,7 @@ else
                EXTLIBS += -liberty
                BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
         else
-               FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lbfd
+               FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
                has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
                ifeq ($(has_bfd),y)
                        EXTLIBS += -lbfd
index 4ff45e30c72674583db9f63fb4c8116153b9cba2..b441b07172b7ea9d4a5bd9cf0b1b1a6bd0ed5aba 100644 (file)
@@ -34,6 +34,7 @@ static inline char *bfd_demangle(void __maybe_unused *v,
        return NULL;
 }
 #else
+#define PACKAGE 'perf'
 #include <bfd.h>
 #endif
 #endif