a0f97e06a4
The variable CFLAGS is a wellknown variable and the usage by kbuild may result in unexpected behaviour. On top of that several people over time has asked for a way to pass in additional flags to gcc. This patch replace use of CFLAGS with KBUILD_CFLAGS all over the tree and enabling one to use: make CFLAGS=... to specify additional gcc commandline options. One usecase is when trying to find gcc bugs but other use cases has been requested too. Patch was tested on following architectures: alpha, arm, i386, x86_64, mips, sparc, sparc64, ia64, m68k Test was simple to do a defconfig build, apply the patch and check that nothing got rebuild. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
#
|
|
# x86-64 vDSO.
|
|
#
|
|
|
|
# files to link into the vdso
|
|
# vdso-start.o has to be first
|
|
vobjs-y := vdso-start.o vdso-note.o vclock_gettime.o vgetcpu.o vvar.o
|
|
|
|
# files to link into kernel
|
|
obj-y := vma.o vdso.o vdso-syms.o
|
|
|
|
vobjs := $(foreach F,$(vobjs-y),$(obj)/$F)
|
|
|
|
$(obj)/vdso.o: $(obj)/vdso.so
|
|
|
|
targets += vdso.so vdso.lds $(vobjs-y) vdso-syms.o
|
|
|
|
# The DSO images are built using a special linker script.
|
|
quiet_cmd_syscall = SYSCALL $@
|
|
cmd_syscall = $(CC) -m elf_x86_64 -nostdlib $(SYSCFLAGS_$(@F)) \
|
|
-Wl,-T,$(filter-out FORCE,$^) -o $@
|
|
|
|
export CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
|
|
|
|
vdso-flags = -fPIC -shared -Wl,-soname=linux-vdso.so.1 \
|
|
$(call ld-option, -Wl$(comma)--hash-style=sysv) \
|
|
-Wl,-z,max-page-size=4096 -Wl,-z,common-page-size=4096
|
|
SYSCFLAGS_vdso.so = $(vdso-flags)
|
|
|
|
$(obj)/vdso.o: $(src)/vdso.S $(obj)/vdso.so
|
|
|
|
$(obj)/vdso.so: $(src)/vdso.lds $(vobjs) FORCE
|
|
$(call if_changed,syscall)
|
|
|
|
CFL := $(PROFILING) -mcmodel=small -fPIC -g0 -O2 -fasynchronous-unwind-tables -m64
|
|
|
|
$(obj)/vclock_gettime.o: KBUILD_CFLAGS = $(CFL)
|
|
$(obj)/vgetcpu.o: KBUILD_CFLAGS = $(CFL)
|
|
|
|
# We also create a special relocatable object that should mirror the symbol
|
|
# table and layout of the linked DSO. With ld -R we can then refer to
|
|
# these symbols in the kernel code rather than hand-coded addresses.
|
|
extra-y += vdso-syms.o
|
|
$(obj)/built-in.o: $(obj)/vdso-syms.o
|
|
$(obj)/built-in.o: ld_flags += -R $(obj)/vdso-syms.o
|
|
|
|
SYSCFLAGS_vdso-syms.o = -r -d
|
|
$(obj)/vdso-syms.o: $(src)/vdso.lds $(vobjs) FORCE
|
|
$(call if_changed,syscall)
|