1# SPDX-License-Identifier: GPL-2.0 2# List of files in the vdso 3 4KCOV_INSTRUMENT := n 5ARCH_REL_TYPE_ABS := R_390_COPY|R_390_GLOB_DAT|R_390_JMP_SLOT|R_390_RELATIVE 6ARCH_REL_TYPE_ABS += R_390_GOT|R_390_PLT 7 8include $(srctree)/lib/vdso/Makefile 9obj-vdso32 = vdso_user_wrapper-32.o note-32.o 10 11# Build rules 12 13targets := $(obj-vdso32) vdso32.so vdso32.so.dbg 14obj-vdso32 := $(addprefix $(obj)/, $(obj-vdso32)) 15 16KBUILD_AFLAGS += -DBUILD_VDSO 17KBUILD_CFLAGS += -DBUILD_VDSO -DDISABLE_BRANCH_PROFILING 18 19KBUILD_AFLAGS_32 := $(filter-out -m64,$(KBUILD_AFLAGS)) 20KBUILD_AFLAGS_32 += -m31 -s 21 22KBUILD_CFLAGS_32 := $(filter-out -m64,$(KBUILD_CFLAGS)) 23KBUILD_CFLAGS_32 += -m31 -fPIC -shared -fno-common -fno-builtin 24 25LDFLAGS_vdso32.so.dbg += -fPIC -shared -nostdlib -soname=linux-vdso32.so.1 \ 26 --hash-style=both --build-id=sha1 -melf_s390 -T 27 28$(targets:%=$(obj)/%.dbg): KBUILD_CFLAGS = $(KBUILD_CFLAGS_32) 29$(targets:%=$(obj)/%.dbg): KBUILD_AFLAGS = $(KBUILD_AFLAGS_32) 30 31obj-y += vdso32_wrapper.o 32CPPFLAGS_vdso32.lds += -P -C -U$(ARCH) 33 34# Disable gcov profiling, ubsan and kasan for VDSO code 35GCOV_PROFILE := n 36UBSAN_SANITIZE := n 37KASAN_SANITIZE := n 38 39# Force dependency (incbin is bad) 40$(obj)/vdso32_wrapper.o : $(obj)/vdso32.so 41 42$(obj)/vdso32.so.dbg: $(src)/vdso32.lds $(obj-vdso32) FORCE 43 $(call if_changed,ld) 44 45# strip rule for the .so file 46$(obj)/%.so: OBJCOPYFLAGS := -S 47$(obj)/%.so: $(obj)/%.so.dbg FORCE 48 $(call if_changed,objcopy) 49 50$(obj-vdso32): %-32.o: %.S FORCE 51 $(call if_changed_dep,vdso32as) 52 53# actual build commands 54quiet_cmd_vdso32as = VDSO32A $@ 55 cmd_vdso32as = $(CC) $(a_flags) -c -o $@ $< 56quiet_cmd_vdso32cc = VDSO32C $@ 57 cmd_vdso32cc = $(CC) $(c_flags) -c -o $@ $< 58 59# install commands for the unstripped file 60quiet_cmd_vdso_install = INSTALL $@ 61 cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@ 62 63vdso32.so: $(obj)/vdso32.so.dbg 64 @mkdir -p $(MODLIB)/vdso 65 $(call cmd,vdso_install) 66 67vdso_install: vdso32.so 68 69# Generate VDSO offsets using helper script 70gen-vdsosym := $(srctree)/$(src)/gen_vdso_offsets.sh 71quiet_cmd_vdsosym = VDSOSYM $@ 72 cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@ 73 74include/generated/vdso32-offsets.h: $(obj)/vdso32.so.dbg FORCE 75 $(call if_changed,vdsosym) 76