blob: 4ab8630451881f19a840189619013277a54b1114 [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
Peter Collingbourne98cd3c32019-06-21 10:52:32 +010023ccflags-y := -fno-common -fno-builtin -fno-stack-protector -ffixed-x18
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010024ccflags-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
Vincenzo Frascino3acf4be2019-06-26 12:36:32 +010041# Clang versions less than 8 do not support -mcmodel=tiny
42ifeq ($(CONFIG_CC_IS_CLANG), y)
43 ifeq ($(shell test $(CONFIG_CLANG_VERSION) -lt 80000; echo $$?),0)
44 CFLAGS_REMOVE_vgettimeofday.o += -mcmodel=tiny
45 endif
46endif
47
Arnd Bergmann54309782015-11-12 15:37:12 +010048# Disable gcov profiling for VDSO code
49GCOV_PROFILE := n
50
Will Deacon9031fef2012-03-05 11:49:31 +000051obj-y += vdso.o
Kevin Brodskya66649d2016-05-12 17:39:15 +010052extra-y += vdso.lds
Will Deacon9031fef2012-03-05 11:49:31 +000053CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
54
55# Force dependency (incbin is bad)
56$(obj)/vdso.o : $(obj)/vdso.so
57
58# Link rule for the .so file, .lds has to be first
Masahiro Yamada697e96e2019-04-03 17:48:22 +090059$(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
Masahiro Yamada691efbe2019-04-11 18:30:15 +090060 $(call if_changed,ld)
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010061 $(call if_changed,vdso_check)
Will Deacon9031fef2012-03-05 11:49:31 +000062
63# Strip rule for the .so file
64$(obj)/%.so: OBJCOPYFLAGS := -S
65$(obj)/%.so: $(obj)/%.so.dbg FORCE
66 $(call if_changed,objcopy)
67
68# Generate VDSO offsets using helper script
69gen-vdsosym := $(srctree)/$(src)/gen_vdso_offsets.sh
70quiet_cmd_vdsosym = VDSOSYM $@
Masahiro Yamada697e96e2019-04-03 17:48:22 +090071 cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
Will Deacon9031fef2012-03-05 11:49:31 +000072
Kevin Brodskya66649d2016-05-12 17:39:15 +010073include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
Will Deacon9031fef2012-03-05 11:49:31 +000074 $(call if_changed,vdsosym)
75
Will Deacon9031fef2012-03-05 11:49:31 +000076# Actual build commands
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010077quiet_cmd_vdsocc = VDSOCC $@
78 cmd_vdsocc = $(CC) $(a_flags) $(c_flags) -c -o $@ $<
Will Deacon9031fef2012-03-05 11:49:31 +000079
80# Install commands for the unstripped file
81quiet_cmd_vdso_install = INSTALL $@
82 cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@
83
84vdso.so: $(obj)/vdso.so.dbg
85 @mkdir -p $(MODLIB)/vdso
86 $(call cmd,vdso_install)
87
88vdso_install: vdso.so