.. | .. |
---|
9 | 9 | obj-vdso64 := $(addprefix $(obj)/, $(obj-vdso64)) |
---|
10 | 10 | |
---|
11 | 11 | GCOV_PROFILE := n |
---|
| 12 | +KCOV_INSTRUMENT := n |
---|
12 | 13 | UBSAN_SANITIZE := n |
---|
13 | 14 | |
---|
14 | | -ccflags-y := -shared -fno-common -fno-builtin |
---|
15 | | -ccflags-y += -nostdlib -Wl,-soname=linux-vdso64.so.1 \ |
---|
16 | | - $(call cc-ldoption, -Wl$(comma)--hash-style=both) |
---|
| 15 | +ccflags-y := -shared -fno-common -fno-builtin -nostdlib \ |
---|
| 16 | + -Wl,-soname=linux-vdso64.so.1 -Wl,--hash-style=both |
---|
17 | 17 | asflags-y := -D__VDSO64__ -s |
---|
18 | 18 | |
---|
19 | 19 | obj-y += vdso64_wrapper.o |
---|
20 | | -extra-y += vdso64.lds |
---|
| 20 | +targets += vdso64.lds |
---|
21 | 21 | CPPFLAGS_vdso64.lds += -P -C -U$(ARCH) |
---|
22 | 22 | |
---|
23 | 23 | # Force dependency (incbin is bad) |
---|