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

TOMOYO Linux Cross Reference
Linux/arch/parisc/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 # Include the generic Makefile to check the built vdso.
  2 include $(srctree)/lib/vdso/Makefile
  3 
  4 KCOV_INSTRUMENT := n
  5 
  6 # Disable gcov profiling, ubsan and kasan for VDSO code
  7 GCOV_PROFILE := n
  8 UBSAN_SANITIZE := n
  9 KASAN_SANITIZE := n
 10 KCSAN_SANITIZE := n
 11 
 12 obj-vdso32 = note.o sigtramp.o restart_syscall.o
 13 obj-cvdso32 = vdso32_generic.o
 14 
 15 # Build rules
 16 
 17 targets := $(obj-vdso32) $(obj-cvdso32) vdso32.so
 18 obj-vdso32 := $(addprefix $(obj)/, $(obj-vdso32))
 19 obj-cvdso32 := $(addprefix $(obj)/, $(obj-cvdso32))
 20 
 21 VDSO_CFLAGS_REMOVE := -pg $(CC_FLAGS_FTRACE)
 22 CFLAGS_REMOVE_vdso32_generic.o = $(VDSO_CFLAGS_REMOVE)
 23 
 24 ccflags-y := -shared -fno-common -fbuiltin -mno-fast-indirect-calls -O2 -mno-long-calls
 25 #  -march=1.1 -mschedule=7100LC
 26 ccflags-y += -nostdlib -Wl,-soname=linux-vdso32.so.1 \
 27                 $(call ld-option, -Wl$(comma)--hash-style=sysv)
 28 asflags-y := -D__VDSO32__ -s
 29 
 30 KBUILD_AFLAGS += -DBUILD_VDSO
 31 KBUILD_CFLAGS += -DBUILD_VDSO -DDISABLE_BRANCH_PROFILING
 32 
 33 VDSO_LIBGCC := $(shell $(CROSS32CC) -print-libgcc-file-name)
 34 
 35 obj-y += vdso32_wrapper.o
 36 extra-y += vdso32.lds
 37 CPPFLAGS_vdso32.lds += -P -C  #  -U$(ARCH)
 38 
 39 $(obj)/vdso32_wrapper.o : $(obj)/vdso32.so FORCE
 40 
 41 # Force dependency (incbin is bad)
 42 # link rule for the .so file, .lds has to be first
 43 $(obj)/vdso32.so: $(obj)/vdso32.lds $(obj-vdso32) $(obj-cvdso32) $(VDSO_LIBGCC) FORCE
 44         $(call if_changed,vdso32ld)
 45 
 46 # assembly rules for the .S files
 47 $(obj-vdso32): %.o: %.S FORCE
 48         $(call if_changed_dep,vdso32as)
 49 $(obj-cvdso32): %.o: %.c FORCE
 50         $(call if_changed_dep,vdso32cc)
 51 
 52 # actual build commands
 53 quiet_cmd_vdso32ld = VDSO32L $@
 54       cmd_vdso32ld = $(CROSS32CC) $(c_flags) -Wl,-T $(filter-out FORCE, $^) -o $@
 55 quiet_cmd_vdso32as = VDSO32A $@
 56       cmd_vdso32as = $(CROSS32CC) $(a_flags) -c -o $@ $<
 57 quiet_cmd_vdso32cc = VDSO32C $@
 58       cmd_vdso32cc = $(CROSS32CC) $(c_flags) -c -o $@ $<
 59 
 60 # Generate VDSO offsets using helper script
 61 gen-vdsosym := $(src)/gen_vdso_offsets.sh
 62 quiet_cmd_vdsosym = VDSOSYM $@
 63         cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
 64 
 65 include/generated/vdso32-offsets.h: $(obj)/vdso32.so FORCE
 66         $(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