mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 23:52:08 +02: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>
28 lines
707 B
Plaintext
28 lines
707 B
Plaintext
perf-test-$(CONFIG_DWARF_UNWIND) += regs_load.o
|
|
perf-test-$(CONFIG_DWARF_UNWIND) += dwarf-unwind.o
|
|
|
|
perf-test-y += arch-tests.o
|
|
perf-test-y += hybrid.o
|
|
perf-test-y += intel-pt-test.o
|
|
ifeq ($(CONFIG_EXTRA_TESTS),y)
|
|
perf-test-y += insn-x86.o
|
|
endif
|
|
perf-test-$(CONFIG_X86_64) += bp-modify.o
|
|
perf-test-y += amd-ibs-via-core-pmu.o
|
|
perf-test-y += amd-ibs-period.o
|
|
perf-test-y += topdown.o
|
|
|
|
ifdef SHELLCHECK
|
|
SHELL_TESTS := gen-insn-x86-dat.sh
|
|
SHELL_TEST_LOGS := $(SHELL_TESTS:%=%.shellcheck_log)
|
|
else
|
|
SHELL_TESTS :=
|
|
SHELL_TEST_LOGS :=
|
|
endif
|
|
|
|
$(OUTPUT)%.shellcheck_log: %
|
|
$(call rule_mkdir)
|
|
$(Q)$(call echo-cmd,test)$(SHELLCHECK) "$<" > $@ || (cat $@ && rm $@ && false)
|
|
|
|
perf-test-y += $(SHELL_TEST_LOGS)
|