|
@@ -1077,8 +1077,9 @@ static int __cmd_top(struct perf_top *top)
|
|
|
if (top->session == NULL)
|
|
|
return -1;
|
|
|
|
|
|
- if (!objdump_path) {
|
|
|
- ret = perf_env__lookup_objdump(&top->session->header.env);
|
|
|
+ if (!top->annotation_opts.objdump_path) {
|
|
|
+ ret = perf_env__lookup_objdump(&top->session->header.env,
|
|
|
+ &top->annotation_opts.objdump_path);
|
|
|
if (ret)
|
|
|
goto out_delete;
|
|
|
}
|
|
@@ -1347,7 +1348,7 @@ int cmd_top(int argc, const char **argv)
|
|
|
"Display raw encoding of assembly instructions (default)"),
|
|
|
OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
|
|
|
"Enable kernel symbol demangling"),
|
|
|
- OPT_STRING(0, "objdump", &objdump_path, "path",
|
|
|
+ OPT_STRING(0, "objdump", &top.annotation_opts.objdump_path, "path",
|
|
|
"objdump binary to use for disassembly and annotations"),
|
|
|
OPT_STRING('M', "disassembler-style", &top.annotation_opts.disassembler_style, "disassembler style",
|
|
|
"Specify disassembler style (e.g. -M intel for intel syntax)"),
|