mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 06:52:34 -04:00
The NO_AUXTRACE build option was used when the __get_cpuid feature test failed or if it was provided on the command line. The option no longer avoids a dependency on a library and so having the option is just adding complexity to the code base. Remove the option CONFIG_AUXTRACE from Build files and HAVE_AUXTRACE_SUPPORT by assuming it is always defined. Signed-off-by: Ian Rogers <irogers@google.com> Reviewed-by: James Clark <james.clark@linaro.org> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
14 lines
388 B
Plaintext
14 lines
388 B
Plaintext
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
|
|
perf-util-y += auxtrace.o
|