mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Previously arch_support_sort_key and arch_perf_header_entry used a weak symbol to compile as appropriate for x86 and powerpc. A limitation to this is that the handling of a data file could vary in cross-platform development. Change to using the perf_env of the current session to determine the architecture kind and set the sort key and header entries as appropriate. Signed-off-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20250724163302.596743-23-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
12 lines
362 B
Text
12 lines
362 B
Text
perf-util-y += header.o
|
|
perf-util-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
|
|
perf-util-y += perf_regs.o
|
|
perf-util-y += mem-events.o
|
|
perf-util-y += pmu.o
|
|
perf-util-y += sym-handling.o
|
|
perf-util-y += evsel.o
|
|
|
|
perf-util-$(CONFIG_LIBDW) += skip-callchain-idx.o
|
|
|
|
perf-util-$(CONFIG_LIBUNWIND) += unwind-libunwind.o
|
|
perf-util-$(CONFIG_LIBDW_DWARF_UNWIND) += unwind-libdw.o
|