diff options
-rw-r--r-- | Documentation/vDSO/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Documentation/vDSO/Makefile b/Documentation/vDSO/Makefile index 6cbd61270de5..d87bb29afd2a 100644 --- a/Documentation/vDSO/Makefile +++ b/Documentation/vDSO/Makefile | |||
@@ -1,9 +1,12 @@ | |||
1 | # List of programs to build | 1 | # List of programs to build |
2 | hostprogs-$(CONFIG_X86) := vdso_test | 2 | hostprogs-y := vdso_test |
3 | hostprogs-$(CONFIG_X86) := vdso_standalone_test_x86 | ||
4 | vdso_standalone_test_x86-objs := vdso_standalone_test_x86.o parse_vdso.o | ||
3 | vdso_test-objs := parse_vdso.o vdso_test.o | 5 | vdso_test-objs := parse_vdso.o vdso_test.o |
4 | 6 | ||
5 | # Tell kbuild to always build the programs | 7 | # Tell kbuild to always build the programs |
6 | ##always := $(hostprogs-y) | 8 | always := $(hostprogs-y) |
7 | 9 | ||
8 | HOSTCFLAGS := -I$(objtree)/usr/include -std=gnu99 | 10 | HOSTCFLAGS := -I$(objtree)/usr/include -std=gnu99 |
9 | HOSTLDFLAGS = -nostdlib -fno-asynchronous-unwind-tables | 11 | HOSTCFLAGS_vdso_standalone_test_x86.o := -fno-asynchronous-unwind-tables -fno-stack-protector |
12 | HOSTLOADLIBES_vdso_standalone_test_x86 := -nostdlib | ||