Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86_64: Rename CF Makefile variable in vdso

This avoids a conflict with sparse builds.

Reported by Alexey Dobriyan, fix suggested by Al Viro

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Andi Kleen and committed by
Linus Torvalds
037e20a3 b053c204

+3 -3
+3 -3
arch/x86_64/vdso/Makefile
··· 32 32 $(obj)/vdso.so: $(src)/vdso.lds $(vobjs) FORCE 33 33 $(call if_changed,syscall) 34 34 35 - CF := $(PROFILING) -mcmodel=small -fPIC -g0 -O2 -fasynchronous-unwind-tables -m64 35 + CFL := $(PROFILING) -mcmodel=small -fPIC -g0 -O2 -fasynchronous-unwind-tables -m64 36 36 37 - $(obj)/vclock_gettime.o: CFLAGS = $(CF) 38 - $(obj)/vgetcpu.o: CFLAGS = $(CF) 37 + $(obj)/vclock_gettime.o: CFLAGS = $(CFL) 38 + $(obj)/vgetcpu.o: CFLAGS = $(CFL) 39 39 40 40 # We also create a special relocatable object that should mirror the symbol 41 41 # table and layout of the linked DSO. With ld -R we can then refer to