~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/s390/kernel/vdso32/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 # List of files in the vdso
  3 
  4 # Include the generic Makefile to check the built vdso.
  5 include $(srctree)/lib/vdso/Makefile
  6 obj-vdso32 = vdso_user_wrapper-32.o note-32.o
  7 
  8 # Build rules
  9 
 10 targets := $(obj-vdso32) vdso32.so vdso32.so.dbg
 11 obj-vdso32 := $(addprefix $(obj)/, $(obj-vdso32))
 12 
 13 KBUILD_AFLAGS += -DBUILD_VDSO
 14 KBUILD_CFLAGS += -DBUILD_VDSO -DDISABLE_BRANCH_PROFILING
 15 
 16 KBUILD_AFLAGS_32 := $(filter-out -m64,$(KBUILD_AFLAGS))
 17 KBUILD_AFLAGS_32 += -m31 -s
 18 
 19 KBUILD_CFLAGS_32 := $(filter-out -m64,$(KBUILD_CFLAGS))
 20 KBUILD_CFLAGS_32 := $(filter-out -mpacked-stack,$(KBUILD_CFLAGS))
 21 KBUILD_CFLAGS_32 := $(filter-out -mno-pic-data-is-text-relative,$(KBUILD_CFLAGS_32))
 22 KBUILD_CFLAGS_32 := $(filter-out -fno-asynchronous-unwind-tables,$(KBUILD_CFLAGS_32))
 23 KBUILD_CFLAGS_32 += -m31 -fPIC -shared -fno-common -fno-builtin -fasynchronous-unwind-tables
 24 
 25 LDFLAGS_vdso32.so.dbg += -shared -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 
 31 obj-y += vdso32_wrapper.o
 32 targets += vdso32.lds
 33 CPPFLAGS_vdso32.lds += -P -C -U$(ARCH)
 34 
 35 # Force dependency (incbin is bad)
 36 $(obj)/vdso32_wrapper.o : $(obj)/vdso32.so
 37 
 38 quiet_cmd_vdso_and_check = VDSO    $@
 39       cmd_vdso_and_check = $(cmd_ld); $(cmd_vdso_check)
 40 
 41 $(obj)/vdso32.so.dbg: $(obj)/vdso32.lds $(obj-vdso32) FORCE
 42         $(call if_changed,vdso_and_check)
 43 
 44 # strip rule for the .so file
 45 $(obj)/%.so: OBJCOPYFLAGS := -S
 46 $(obj)/%.so: $(obj)/%.so.dbg FORCE
 47         $(call if_changed,objcopy)
 48 
 49 $(obj-vdso32): %-32.o: %.S FORCE
 50         $(call if_changed_dep,vdso32as)
 51 
 52 # actual build commands
 53 quiet_cmd_vdso32as = VDSO32A $@
 54       cmd_vdso32as = $(CC) $(a_flags) -c -o $@ $<
 55 quiet_cmd_vdso32cc = VDSO32C $@
 56       cmd_vdso32cc = $(CC) $(c_flags) -c -o $@ $<
 57 
 58 # Generate VDSO offsets using helper script
 59 gen-vdsosym := $(src)/gen_vdso_offsets.sh
 60 quiet_cmd_vdsosym = VDSOSYM $@
 61         cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
 62 
 63 include/generated/vdso32-offsets.h: $(obj)/vdso32.so.dbg FORCE
 64         $(call if_changed,vdsosym)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php