diff options
Diffstat (limited to 'tools/testing/selftests/x86/Makefile')
-rw-r--r-- | tools/testing/selftests/x86/Makefile | 53 |
1 files changed, 31 insertions, 22 deletions
diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile index ddf63569df5a..5bdb781163d1 100644 --- a/tools/testing/selftests/x86/Makefile +++ b/tools/testing/selftests/x86/Makefile | |||
@@ -1,4 +1,8 @@ | |||
1 | .PHONY: all all_32 all_64 check_build32 clean run_tests | 1 | all: |
2 | |||
3 | include ../lib.mk | ||
4 | |||
5 | .PHONY: all all_32 all_64 warn_32bit_failure clean | ||
2 | 6 | ||
3 | TARGETS_C_BOTHBITS := sigreturn single_step_syscall | 7 | TARGETS_C_BOTHBITS := sigreturn single_step_syscall |
4 | 8 | ||
@@ -7,42 +11,47 @@ BINARIES_64 := $(TARGETS_C_BOTHBITS:%=%_64) | |||
7 | 11 | ||
8 | CFLAGS := -O2 -g -std=gnu99 -pthread -Wall | 12 | CFLAGS := -O2 -g -std=gnu99 -pthread -Wall |
9 | 13 | ||
10 | UNAME_P := $(shell uname -p) | 14 | UNAME_M := $(shell uname -m) |
15 | CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32) | ||
16 | CAN_BUILD_X86_64 := $(shell ./check_cc.sh $(CC) trivial_64bit_program.c) | ||
11 | 17 | ||
12 | # Always build 32-bit tests | 18 | ifeq ($(CAN_BUILD_I386),1) |
13 | all: all_32 | 19 | all: all_32 |
20 | TEST_PROGS += $(BINARIES_32) | ||
21 | endif | ||
14 | 22 | ||
15 | # If we're on a 64-bit host, build 64-bit tests as well | 23 | ifeq ($(CAN_BUILD_X86_64),1) |
16 | ifeq ($(shell uname -p),x86_64) | ||
17 | all: all_64 | 24 | all: all_64 |
25 | TEST_PROGS += $(BINARIES_64) | ||
18 | endif | 26 | endif |
19 | 27 | ||
20 | all_32: check_build32 $(BINARIES_32) | 28 | all_32: $(BINARIES_32) |
21 | 29 | ||
22 | all_64: $(BINARIES_64) | 30 | all_64: $(BINARIES_64) |
23 | 31 | ||
24 | clean: | 32 | clean: |
25 | $(RM) $(BINARIES_32) $(BINARIES_64) | 33 | $(RM) $(BINARIES_32) $(BINARIES_64) |
26 | 34 | ||
27 | run_tests: | ||
28 | ./run_x86_tests.sh | ||
29 | |||
30 | $(TARGETS_C_BOTHBITS:%=%_32): %_32: %.c | 35 | $(TARGETS_C_BOTHBITS:%=%_32): %_32: %.c |
31 | $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl | 36 | $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl |
32 | 37 | ||
33 | $(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c | 38 | $(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c |
34 | $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl | 39 | $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl |
35 | 40 | ||
36 | check_build32: | 41 | # x86_64 users should be encouraged to install 32-bit libraries |
37 | @if ! $(CC) -m32 -o /dev/null trivial_32bit_program.c; then \ | 42 | ifeq ($(CAN_BUILD_I386)$(CAN_BUILD_X86_64),01) |
38 | echo "Warning: you seem to have a broken 32-bit build" 2>&1; \ | 43 | all: warn_32bit_failure |
39 | echo "environment. If you are using a Debian-like"; \ | 44 | |
40 | echo " distribution, try:"; \ | 45 | warn_32bit_failure: |
41 | echo ""; \ | 46 | @echo "Warning: you seem to have a broken 32-bit build" 2>&1; \ |
42 | echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \ | 47 | echo "environment. This will reduce test coverage of 64-bit" 2>&1; \ |
43 | echo ""; \ | 48 | echo "kernels. If you are using a Debian-like distribution," 2>&1; \ |
44 | echo "If you are using a Fedora-like distribution, try:"; \ | 49 | echo "try:"; 2>&1; \ |
45 | echo ""; \ | 50 | echo ""; \ |
46 | echo " yum install glibc-devel.*i686"; \ | 51 | echo " apt-get install gcc-multilib libc6-i386 libc6-dev-i386"; \ |
47 | exit 1; \ | 52 | echo ""; \ |
48 | fi | 53 | echo "If you are using a Fedora-like distribution, try:"; \ |
54 | echo ""; \ | ||
55 | echo " yum install glibc-devel.*i686"; \ | ||
56 | exit 0; | ||
57 | endif | ||