blob: 3acfc813e9661086854074ac753482bc373a5fb3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Will Deacon9031fef2012-03-05 11:49:31 +00002#
3# Building a vDSO image for AArch64.
4#
5# Author: Will Deacon <will.deacon@arm.com>
6# Heavily based on the vDSO Makefiles for other archs.
7#
8
Vincenzo Frascino28b1a822019-06-21 10:52:31 +01009# Absolute relocation type $(ARCH_REL_TYPE_ABS) needs to be defined before
10# the inclusion of generic Makefile.
11ARCH_REL_TYPE_ABS := R_AARCH64_JUMP_SLOT|R_AARCH64_GLOB_DAT|R_AARCH64_ABS64
12include $(srctree)/lib/vdso/Makefile
13
14obj-vdso := vgettimeofday.o note.o sigreturn.o
Will Deacon9031fef2012-03-05 11:49:31 +000015
16# Build rules
17targets := $(obj-vdso) vdso.so vdso.so.dbg
18obj-vdso := $(addprefix $(obj)/, $(obj-vdso))
19
Laura Abbott7a0a93c2019-05-15 12:48:24 -070020ldflags-y := -shared -nostdlib -soname=linux-vdso.so.1 --hash-style=sysv \
21 --build-id -n -T
Will Deacon9031fef2012-03-05 11:49:31 +000022
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010023ccflags-y := -fno-common -fno-builtin -fno-stack-protector
24ccflags-y += -DDISABLE_BRANCH_PROFILING
25
26VDSO_LDFLAGS := -Bsymbolic
27
28CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) -Os
29KBUILD_CFLAGS += $(DISABLE_LTO)
30KASAN_SANITIZE := n
31UBSAN_SANITIZE := n
32OBJECT_FILES_NON_STANDARD := y
33KCOV_INSTRUMENT := n
34
35ifeq ($(c-gettimeofday-y),)
36CFLAGS_vgettimeofday.o = -O2 -mcmodel=tiny
37else
38CFLAGS_vgettimeofday.o = -O2 -mcmodel=tiny -include $(c-gettimeofday-y)
39endif
40
Arnd Bergmann54309782015-11-12 15:37:12 +010041# Disable gcov profiling for VDSO code
42GCOV_PROFILE := n
43
Will Deacon9031fef2012-03-05 11:49:31 +000044obj-y += vdso.o
Kevin Brodskya66649d2016-05-12 17:39:15 +010045extra-y += vdso.lds
Will Deacon9031fef2012-03-05 11:49:31 +000046CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
47
48# Force dependency (incbin is bad)
49$(obj)/vdso.o : $(obj)/vdso.so
50
51# Link rule for the .so file, .lds has to be first
Masahiro Yamada697e96e2019-04-03 17:48:22 +090052$(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
Masahiro Yamada691efbe2019-04-11 18:30:15 +090053 $(call if_changed,ld)
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010054 $(call if_changed,vdso_check)
Will Deacon9031fef2012-03-05 11:49:31 +000055
56# Strip rule for the .so file
57$(obj)/%.so: OBJCOPYFLAGS := -S
58$(obj)/%.so: $(obj)/%.so.dbg FORCE
59 $(call if_changed,objcopy)
60
61# Generate VDSO offsets using helper script
62gen-vdsosym := $(srctree)/$(src)/gen_vdso_offsets.sh
63quiet_cmd_vdsosym = VDSOSYM $@
Masahiro Yamada697e96e2019-04-03 17:48:22 +090064 cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
Will Deacon9031fef2012-03-05 11:49:31 +000065
Kevin Brodskya66649d2016-05-12 17:39:15 +010066include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
Will Deacon9031fef2012-03-05 11:49:31 +000067 $(call if_changed,vdsosym)
68
Will Deacon9031fef2012-03-05 11:49:31 +000069# Actual build commands
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010070quiet_cmd_vdsocc = VDSOCC $@
71 cmd_vdsocc = $(CC) $(a_flags) $(c_flags) -c -o $@ $<
Will Deacon9031fef2012-03-05 11:49:31 +000072
73# Install commands for the unstripped file
74quiet_cmd_vdso_install = INSTALL $@
75 cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@
76
77vdso.so: $(obj)/vdso.so.dbg
78 @mkdir -p $(MODLIB)/vdso
79 $(call cmd,vdso_install)
80
81vdso_install: vdso.so