diff options
author | Jiri Olsa <jolsa@redhat.com> | 2013-03-24 19:48:14 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-05-28 09:24:07 -0400 |
commit | 779724fd079ec9a3b050b631b2d21ea97981e258 (patch) | |
tree | b75ae7571b335ce1ab6bb29296404d34c98d21dd /tools/perf/config | |
parent | cf4cca10f6905229b9269e8f0a300016010320de (diff) |
perf tools: Move libdw check config into config/Makefile
Moving libdw check config into config/Makefile.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1369398928-9809-7-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/config')
-rw-r--r-- | tools/perf/config/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index 17614b16c7d0..71e737c4c4d6 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile | |||
@@ -154,4 +154,19 @@ FLAGS_LIBELF=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) | |||
154 | ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DLIBELF_MMAP),y) | 154 | ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DLIBELF_MMAP),y) |
155 | BASIC_CFLAGS += -DLIBELF_MMAP | 155 | BASIC_CFLAGS += -DLIBELF_MMAP |
156 | endif | 156 | endif |
157 | |||
158 | # include ARCH specific config | ||
159 | -include arch/$(ARCH)/Makefile | ||
160 | |||
161 | ifndef NO_DWARF | ||
162 | ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined) | ||
163 | msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled); | ||
164 | NO_DWARF := 1 | ||
165 | else | ||
166 | BASIC_CFLAGS := -DDWARF_SUPPORT $(LIBDW_CFLAGS) $(BASIC_CFLAGS) | ||
167 | BASIC_LDFLAGS := $(LIBDW_LDFLAGS) $(BASIC_LDFLAGS) | ||
168 | EXTLIBS += -lelf -ldw | ||
169 | endif # PERF_HAVE_DWARF_REGS | ||
170 | endif # NO_DWARF | ||
171 | |||
157 | endif # NO_LIBELF | 172 | endif # NO_LIBELF |