mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
6a407a81a9
The following was seen in linux-next build coverage, which is somewhat unique since it uses powerpc host to cross compile x86: Documentation/vDSO/vdso_standalone_test_x86.c:49:2: error: impossible register constraint in 'asm' make[4]: *** [Documentation/vDSO/vdso_standalone_test_x86.o] Error 1 It probably makes sense to just skip building these tests when we are cross compiling. Cc: Jonathan Corbet <corbet@lwn.net> Cc: linux-doc@vger.kernel.org Cc: Andy Lutomirski <luto@amacapital.net> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
18 lines
626 B
Makefile
18 lines
626 B
Makefile
ifndef CROSS_COMPILE
|
|
# vdso_test won't build for glibc < 2.16, so disable it
|
|
# hostprogs-y := vdso_test
|
|
hostprogs-$(CONFIG_X86) := vdso_standalone_test_x86
|
|
vdso_standalone_test_x86-objs := vdso_standalone_test_x86.o parse_vdso.o
|
|
vdso_test-objs := parse_vdso.o vdso_test.o
|
|
|
|
# Tell kbuild to always build the programs
|
|
always := $(hostprogs-y)
|
|
|
|
HOSTCFLAGS := -I$(objtree)/usr/include -std=gnu99
|
|
HOSTCFLAGS_vdso_standalone_test_x86.o := -fno-asynchronous-unwind-tables -fno-stack-protector
|
|
HOSTLOADLIBES_vdso_standalone_test_x86 := -nostdlib
|
|
ifeq ($(CONFIG_X86_32),y)
|
|
HOSTLOADLIBES_vdso_standalone_test_x86 += -lgcc_s
|
|
endif
|
|
endif
|