diff options
author | Peter Foley <pefoley2@pefoley.com> | 2014-09-25 14:23:43 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-09-26 05:03:00 -0400 |
commit | 15565829e75ce6b50449462405dd7e72c37bd74e (patch) | |
tree | c72e6e90bb318add0cbc389c56ab0188ef45c3a8 /Documentation/vDSO | |
parent | c5e2a7e01269cd9839fef8a5c5ac258277b3b08f (diff) |
Documentation: update vDSO makefile to build portable examples
Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'Documentation/vDSO')
-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 | ||