Linux 4.16-rc1
[cris-mirror.git] / tools / testing / selftests / x86 / Makefile
blob10ca46df144921ee3bdc60aa6974802dfffa77e8
1 # SPDX-License-Identifier: GPL-2.0
2 all:
4 include ../lib.mk
6 .PHONY: all all_32 all_64 warn_32bit_failure clean
8 TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs syscall_nt ptrace_syscall test_mremap_vdso \
9 check_initial_reg_state sigreturn ldt_gdt iopl mpx-mini-test ioperm \
10 protection_keys test_vdso test_vsyscall
11 TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault test_syscall_vdso unwind_vdso \
12 test_FCMOV test_FCOMI test_FISTTP \
13 vdso_restorer
14 TARGETS_C_64BIT_ONLY := fsgsbase sysret_rip 5lvl
16 TARGETS_C_32BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_32BIT_ONLY)
17 TARGETS_C_64BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_64BIT_ONLY)
18 BINARIES_32 := $(TARGETS_C_32BIT_ALL:%=%_32)
19 BINARIES_64 := $(TARGETS_C_64BIT_ALL:%=%_64)
21 BINARIES_32 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_32))
22 BINARIES_64 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_64))
24 CFLAGS := -O2 -g -std=gnu99 -pthread -Wall -no-pie
26 UNAME_M := $(shell uname -m)
27 CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32)
28 CAN_BUILD_X86_64 := $(shell ./check_cc.sh $(CC) trivial_64bit_program.c)
30 define gen-target-rule-32
31 $(1) $(1)_32: $(OUTPUT)/$(1)_32
32 .PHONY: $(1) $(1)_32
33 endef
35 define gen-target-rule-64
36 $(1) $(1)_64: $(OUTPUT)/$(1)_64
37 .PHONY: $(1) $(1)_64
38 endef
40 ifeq ($(CAN_BUILD_I386),1)
41 all: all_32
42 TEST_PROGS += $(BINARIES_32)
43 $(foreach t,$(TARGETS_C_32BIT_ALL),$(eval $(call gen-target-rule-32,$(t))))
44 endif
46 ifeq ($(CAN_BUILD_X86_64),1)
47 all: all_64
48 TEST_PROGS += $(BINARIES_64)
49 $(foreach t,$(TARGETS_C_64BIT_ALL),$(eval $(call gen-target-rule-64,$(t))))
50 endif
52 all_32: $(BINARIES_32)
54 all_64: $(BINARIES_64)
56 EXTRA_CLEAN := $(BINARIES_32) $(BINARIES_64)
58 $(BINARIES_32): $(OUTPUT)/%_32: %.c
59 $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl -lm
61 $(BINARIES_64): $(OUTPUT)/%_64: %.c
62 $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
64 # x86_64 users should be encouraged to install 32-bit libraries
65 ifeq ($(CAN_BUILD_I386)$(CAN_BUILD_X86_64),01)
66 all: warn_32bit_failure
68 warn_32bit_failure:
69 @echo "Warning: you seem to have a broken 32-bit build" 2>&1; \
70 echo "environment. This will reduce test coverage of 64-bit" 2>&1; \
71 echo "kernels. If you are using a Debian-like distribution," 2>&1; \
72 echo "try:"; 2>&1; \
73 echo ""; \
74 echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \
75 echo ""; \
76 echo "If you are using a Fedora-like distribution, try:"; \
77 echo ""; \
78 echo " yum install glibc-devel.*i686"; \
79 exit 0;
80 endif
82 # Some tests have additional dependencies.
83 $(OUTPUT)/sysret_ss_attrs_64: thunks.S
84 $(OUTPUT)/ptrace_syscall_32: raw_syscall_helper_32.S
85 $(OUTPUT)/test_syscall_vdso_32: thunks_32.S
87 # check_initial_reg_state is special: it needs a custom entry, and it
88 # needs to be static so that its interpreter doesn't destroy its initial
89 # state.
90 $(OUTPUT)/check_initial_reg_state_32: CFLAGS += -Wl,-ereal_start -static
91 $(OUTPUT)/check_initial_reg_state_64: CFLAGS += -Wl,-ereal_start -static