aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r--tools/perf/builtin-report.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index b2b6a9672544..5312c761a5db 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -383,10 +383,10 @@ static int report__setup_sample_type(struct report *rep)
383 PERF_SAMPLE_BRANCH_ANY)) 383 PERF_SAMPLE_BRANCH_ANY))
384 rep->nonany_branch_mode = true; 384 rep->nonany_branch_mode = true;
385 385
386#ifndef HAVE_LIBUNWIND_SUPPORT 386#if !defined(HAVE_LIBUNWIND_SUPPORT) && !defined(HAVE_DWARF_SUPPORT)
387 if (dwarf_callchain_users) { 387 if (dwarf_callchain_users) {
388 ui__warning("Please install libunwind development packages " 388 ui__warning("Please install libunwind or libdw "
389 "during the perf build.\n"); 389 "development packages during the perf build.\n");
390 } 390 }
391#endif 391#endif
392 392