mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-22 00:42:01 +02:00

Rather than building on supported archs, build on all archs, and then use the presence of the symbol in the vDSO to either skip the test or move forward with it. Note that this means that this test no longer checks whether the symbol was correctly added to the kernel. But hopefully this will be clear enough to developers and we'll cross our fingers that symbols aren't removed by accident and not caught after this change. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
include ../../../scripts/Makefile.arch
|
|
|
|
TEST_GEN_PROGS := vdso_test_gettimeofday
|
|
TEST_GEN_PROGS += vdso_test_getcpu
|
|
TEST_GEN_PROGS += vdso_test_abi
|
|
TEST_GEN_PROGS += vdso_test_clock_getres
|
|
ifeq ($(ARCH),$(filter $(ARCH),x86 x86_64))
|
|
TEST_GEN_PROGS += vdso_standalone_test_x86
|
|
endif
|
|
TEST_GEN_PROGS += vdso_test_correctness
|
|
TEST_GEN_PROGS += vdso_test_getrandom
|
|
TEST_GEN_PROGS += vdso_test_chacha
|
|
|
|
CFLAGS := -std=gnu99 -O2
|
|
|
|
ifeq ($(CONFIG_X86_32),y)
|
|
LDLIBS += -lgcc_s
|
|
endif
|
|
|
|
include ../lib.mk
|
|
$(OUTPUT)/vdso_test_gettimeofday: parse_vdso.c vdso_test_gettimeofday.c
|
|
$(OUTPUT)/vdso_test_getcpu: parse_vdso.c vdso_test_getcpu.c
|
|
$(OUTPUT)/vdso_test_abi: parse_vdso.c vdso_test_abi.c
|
|
$(OUTPUT)/vdso_test_clock_getres: vdso_test_clock_getres.c
|
|
|
|
$(OUTPUT)/vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c
|
|
$(OUTPUT)/vdso_standalone_test_x86: CFLAGS +=-nostdlib -fno-asynchronous-unwind-tables -fno-stack-protector
|
|
|
|
$(OUTPUT)/vdso_test_correctness: vdso_test_correctness.c
|
|
$(OUTPUT)/vdso_test_correctness: LDFLAGS += -ldl
|
|
|
|
$(OUTPUT)/vdso_test_getrandom: parse_vdso.c
|
|
$(OUTPUT)/vdso_test_getrandom: CFLAGS += -isystem $(top_srcdir)/tools/include \
|
|
$(KHDR_INCLUDES) \
|
|
-isystem $(top_srcdir)/include/uapi
|
|
|
|
$(OUTPUT)/vdso_test_chacha: vgetrandom-chacha.S
|
|
$(OUTPUT)/vdso_test_chacha: CFLAGS += -idirafter $(top_srcdir)/tools/include \
|
|
-idirafter $(top_srcdir)/tools/include/generated \
|
|
-idirafter $(top_srcdir)/arch/$(SRCARCH)/include \
|
|
-idirafter $(top_srcdir)/include \
|
|
-Wa,--noexecstack
|