Makefile (94cc36b84acc29f543b48bc5ed786011b112a666) | Makefile (bb93078e655be1e24d68f28f2756676e62c037ce) |
---|---|
1# Objects to go into the VDSO. 2obj-vdso-y := elf.o gettimeofday.o sigreturn.o 3 4# Common compiler flags between ABIs. 5ccflags-vdso := \ 6 $(filter -I%,$(KBUILD_CFLAGS)) \ 7 $(filter -E%,$(KBUILD_CFLAGS)) \ | 1# Objects to go into the VDSO. 2obj-vdso-y := elf.o gettimeofday.o sigreturn.o 3 4# Common compiler flags between ABIs. 5ccflags-vdso := \ 6 $(filter -I%,$(KBUILD_CFLAGS)) \ 7 $(filter -E%,$(KBUILD_CFLAGS)) \ |
8 $(filter -mmicromips,$(KBUILD_CFLAGS)) \ |
|
8 $(filter -march=%,$(KBUILD_CFLAGS)) 9cflags-vdso := $(ccflags-vdso) \ 10 $(filter -W%,$(filter-out -Wa$(comma)%,$(KBUILD_CFLAGS))) \ 11 -O2 -g -fPIC -fno-strict-aliasing -fno-common -fno-builtin -G 0 \ 12 -DDISABLE_BRANCH_PROFILING \ 13 $(call cc-option, -fno-stack-protector) 14aflags-vdso := $(ccflags-vdso) \ 15 $(filter -I%,$(KBUILD_CFLAGS)) \ --- 162 unchanged lines hidden --- | 9 $(filter -march=%,$(KBUILD_CFLAGS)) 10cflags-vdso := $(ccflags-vdso) \ 11 $(filter -W%,$(filter-out -Wa$(comma)%,$(KBUILD_CFLAGS))) \ 12 -O2 -g -fPIC -fno-strict-aliasing -fno-common -fno-builtin -G 0 \ 13 -DDISABLE_BRANCH_PROFILING \ 14 $(call cc-option, -fno-stack-protector) 15aflags-vdso := $(ccflags-vdso) \ 16 $(filter -I%,$(KBUILD_CFLAGS)) \ --- 162 unchanged lines hidden --- |