1# SPDX-License-Identifier: GPL-2.0 2include ../../../../../../scripts/Kbuild.include 3 4noarg: 5 $(MAKE) -C ../../ 6 7# The EBB handler is 64-bit code and everything links against it 8CFLAGS += -m64 9 10# Toolchains may build PIE by default which breaks the assembly 11no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \ 12 $(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -no-pie -x c - -o "$$TMP", -no-pie) 13 14LDFLAGS += $(no-pie-option) 15 16TEST_GEN_PROGS := reg_access_test event_attributes_test cycles_test \ 17 cycles_with_freeze_test pmc56_overflow_test \ 18 ebb_vs_cpu_event_test cpu_event_vs_ebb_test \ 19 cpu_event_pinned_vs_ebb_test task_event_vs_ebb_test \ 20 task_event_pinned_vs_ebb_test multi_ebb_procs_test \ 21 multi_counter_test pmae_handling_test \ 22 close_clears_pmcc_test instruction_count_test \ 23 fork_cleanup_test ebb_on_child_test \ 24 ebb_on_willing_child_test back_to_back_ebbs_test \ 25 lost_exception_test no_handler_test \ 26 cycles_with_mmcr2_test 27 28top_srcdir = ../../../../../.. 29include ../../../lib.mk 30 31$(TEST_GEN_PROGS): ../../harness.c ../../utils.c ../event.c ../lib.c \ 32 ebb.c ebb_handler.S trace.c busy_loop.S 33 34$(OUTPUT)/instruction_count_test: ../loop.S 35 36$(OUTPUT)/lost_exception_test: ../lib.c 37