diff options
Diffstat (limited to 'tools/perf/arch/common.c')
| -rw-r--r-- | tools/perf/arch/common.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/arch/common.c b/tools/perf/arch/common.c index 5683529135b..3e975cb6232 100644 --- a/tools/perf/arch/common.c +++ b/tools/perf/arch/common.c @@ -199,6 +199,13 @@ out_error:  int perf_session_env__lookup_objdump(struct perf_session_env *env)  { +	/* +	 * For live mode, env->arch will be NULL and we can use +	 * the native objdump tool. +	 */ +	if (env->arch == NULL) +		return 0; +  	return perf_session_env__lookup_binutils_path(env, "objdump",  						      &objdump_path);  }  |