diff options
author | Maciek Borzecki <maciek.borzecki@gmail.com> | 2012-09-04 12:32:30 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-09-06 00:41:55 +0200 |
commit | 7a4ec938857cf534270b23545495300fbac7f5de (patch) | |
tree | 3619137d2a7a6ce0209240cf9c99e7a3587e58c2 /tools/perf/util/annotate.h | |
parent | perf tools: Replace mempcpy with memcpy (diff) | |
download | linux-7a4ec938857cf534270b23545495300fbac7f5de.tar.xz linux-7a4ec938857cf534270b23545495300fbac7f5de.zip |
perf tools: Allow user to indicate path to objdump in command line
When analyzing perf data from hosts of other architecture than one of
the local host it's useful to call objdump that is part of a toolchain
for that architecture. Instead of calling regular objdump, call one that
user specified in command line.
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
Acked-by: David Ahern <dsahern@gmail.com>
Link: http://lkml.kernel.org/r/1346754750.16299.3.camel@localhost.localdomain
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | tools/perf/util/annotate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index 78a5692dd718..a6d6bc5d7164 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -152,5 +152,6 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx, #endif extern const char *disassembler_style; +extern const char *objdump_path; #endif /* __PERF_ANNOTATE_H */ |