GNU Linux-libre 5.19-rc6-gnu
[releases.git] / arch / riscv / kernel / vdso / Makefile
1 # SPDX-License-Identifier: GPL-2.0-only
2 # Copied from arch/tile/kernel/vdso/Makefile
3
4 # Absolute relocation type $(ARCH_REL_TYPE_ABS) needs to be defined before
5 # the inclusion of generic Makefile.
6 ARCH_REL_TYPE_ABS := R_RISCV_32|R_RISCV_64|R_RISCV_JUMP_SLOT
7 include $(srctree)/lib/vdso/Makefile
8 # Symbols present in the vdso
9 vdso-syms  = rt_sigreturn
10 ifdef CONFIG_64BIT
11 vdso-syms += vgettimeofday
12 endif
13 vdso-syms += getcpu
14 vdso-syms += flush_icache
15
16 # Files to link into the vdso
17 obj-vdso = $(patsubst %, %.o, $(vdso-syms)) note.o
18
19 ccflags-y := -fno-stack-protector
20
21 ifneq ($(c-gettimeofday-y),)
22   CFLAGS_vgettimeofday.o += -fPIC -include $(c-gettimeofday-y)
23 endif
24
25 # Build rules
26 targets := $(obj-vdso) vdso.so vdso.so.dbg vdso.lds
27 obj-vdso := $(addprefix $(obj)/, $(obj-vdso))
28
29 obj-y += vdso.o
30 CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
31
32 # Disable -pg to prevent insert call site
33 CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) -Os
34
35 # Disable profiling and instrumentation for VDSO code
36 GCOV_PROFILE := n
37 KCOV_INSTRUMENT := n
38 KASAN_SANITIZE := n
39 UBSAN_SANITIZE := n
40
41 # Force dependency
42 $(obj)/vdso.o: $(obj)/vdso.so
43
44 # link rule for the .so file, .lds has to be first
45 $(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
46         $(call if_changed,vdsold)
47 LDFLAGS_vdso.so.dbg = -shared -S -soname=linux-vdso.so.1 \
48         --build-id=sha1 --hash-style=both --eh-frame-hdr
49
50 # strip rule for the .so file
51 $(obj)/%.so: OBJCOPYFLAGS := -S
52 $(obj)/%.so: $(obj)/%.so.dbg FORCE
53         $(call if_changed,objcopy)
54
55 # Generate VDSO offsets using helper script
56 gen-vdsosym := $(srctree)/$(src)/gen_vdso_offsets.sh
57 quiet_cmd_vdsosym = VDSOSYM $@
58         cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
59
60 include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
61         $(call if_changed,vdsosym)
62
63 # actual build commands
64 # The DSO images are built using a special linker script
65 # Make sure only to export the intended __vdso_xxx symbol offsets.
66 quiet_cmd_vdsold = VDSOLD  $@
67       cmd_vdsold = $(LD) $(ld_flags) -T $(filter-out FORCE,$^) -o $@.tmp && \
68                    $(OBJCOPY) $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \
69                    rm $@.tmp
70
71 # install commands for the unstripped file
72 quiet_cmd_vdso_install = INSTALL $@
73       cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@
74
75 vdso.so: $(obj)/vdso.so.dbg
76         @mkdir -p $(MODLIB)/vdso
77         $(call cmd,vdso_install)
78
79 vdso_install: vdso.so