aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/Makefile2
-rw-r--r--tools/perf/util/symbol.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index 3ae6a59635ca..251dcd7fb5ac 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -715,7 +715,7 @@ else
715 EXTLIBS += -liberty 715 EXTLIBS += -liberty
716 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE 716 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
717 else 717 else
718 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -lbfd 718 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
719 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD)) 719 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD))
720 ifeq ($(has_bfd),y) 720 ifeq ($(has_bfd),y)
721 EXTLIBS += -lbfd 721 EXTLIBS += -lbfd
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h
index 4ff45e30c726..b441b07172b7 100644
--- a/tools/perf/util/symbol.h
+++ b/tools/perf/util/symbol.h
@@ -34,6 +34,7 @@ static inline char *bfd_demangle(void __maybe_unused *v,
34 return NULL; 34 return NULL;
35} 35}
36#else 36#else
37#define PACKAGE 'perf'
37#include <bfd.h> 38#include <bfd.h>
38#endif 39#endif
39#endif 40#endif