diff options
-rw-r--r-- | tools/perf/Makefile.perf | 7 | ||||
-rw-r--r-- | tools/perf/config/Makefile | 1 | ||||
-rw-r--r-- | tools/perf/util/Build | 3 |
3 files changed, 4 insertions, 7 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 0997e2b33c77..5cb62b070e04 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
@@ -346,13 +346,6 @@ ifneq ($(OUTPUT),) | |||
346 | CFLAGS += -I$(OUTPUT) | 346 | CFLAGS += -I$(OUTPUT) |
347 | endif | 347 | endif |
348 | 348 | ||
349 | ifndef NO_LIBELF | ||
350 | ifndef NO_DWARF | ||
351 | LIB_OBJS += $(OUTPUT)util/probe-finder.o | ||
352 | LIB_OBJS += $(OUTPUT)util/dwarf-aux.o | ||
353 | endif # NO_DWARF | ||
354 | endif # NO_LIBELF | ||
355 | |||
356 | ifndef NO_LIBDW_DWARF_UNWIND | 349 | ifndef NO_LIBDW_DWARF_UNWIND |
357 | LIB_OBJS += $(OUTPUT)util/unwind-libdw.o | 350 | LIB_OBJS += $(OUTPUT)util/unwind-libdw.o |
358 | LIB_H += util/unwind-libdw.h | 351 | LIB_H += util/unwind-libdw.h |
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index 79ee4ccce3dc..5f553989d8a1 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile | |||
@@ -392,6 +392,7 @@ ifndef NO_LIBELF | |||
392 | CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS) | 392 | CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS) |
393 | LDFLAGS += $(LIBDW_LDFLAGS) | 393 | LDFLAGS += $(LIBDW_LDFLAGS) |
394 | EXTLIBS += -ldw | 394 | EXTLIBS += -ldw |
395 | $(call detected,CONFIG_DWARF) | ||
395 | endif # PERF_HAVE_DWARF_REGS | 396 | endif # PERF_HAVE_DWARF_REGS |
396 | endif # NO_DWARF | 397 | endif # NO_DWARF |
397 | endif # NO_LIBELF | 398 | endif # NO_LIBELF |
diff --git a/tools/perf/util/Build b/tools/perf/util/Build index 73a0411e2014..10630fbe43c1 100644 --- a/tools/perf/util/Build +++ b/tools/perf/util/Build | |||
@@ -82,6 +82,9 @@ ifndef CONFIG_LIBELF | |||
82 | libperf-y += symbol-minimal.o | 82 | libperf-y += symbol-minimal.o |
83 | endif | 83 | endif |
84 | 84 | ||
85 | libperf-$(CONFIG_DWARF) += probe-finder.o | ||
86 | libperf-$(CONFIG_DWARF) += dwarf-aux.o | ||
87 | |||
85 | CFLAGS_config.o += -DETC_PERFCONFIG="BUILD_STR($(ETC_PERFCONFIG_SQ))" | 88 | CFLAGS_config.o += -DETC_PERFCONFIG="BUILD_STR($(ETC_PERFCONFIG_SQ))" |
86 | CFLAGS_exec_cmd.o += -DPERF_EXEC_PATH="BUILD_STR($(perfexecdir_SQ))" -DPREFIX="BUILD_STR($(prefix_SQ))" | 89 | CFLAGS_exec_cmd.o += -DPERF_EXEC_PATH="BUILD_STR($(perfexecdir_SQ))" -DPREFIX="BUILD_STR($(prefix_SQ))" |
87 | 90 | ||