Skip to content

Commit 398c750

Browse files
groeckralfbaechle
authored andcommitted
MIPS: VDSO: Fix build error with binutils 2.24 and earlier
Commit 2a037f3 ("MIPS: VDSO: Fix build error") tries to fix a build error seen with binutils 2.24 and earlier. However, the fix does not work, and again results in the already known build errors if the kernel is built with an earlier version of binutils. CC arch/mips/vdso/gettimeofday.o /tmp/ccnOVbHT.s: Assembler messages: /tmp/ccnOVbHT.s:50: Error: can't resolve `_start' {*UND* section} - `L0 {.text section} /tmp/ccnOVbHT.s:374: Error: can't resolve `_start' {*UND* section} - `L0 {.text section} scripts/Makefile.build:258: recipe for target 'arch/mips/vdso/gettimeofday.o' failed make[2]: *** [arch/mips/vdso/gettimeofday.o] Error 1 Fixes: 2a037f3 ("MIPS: VDSO: Fix build error") Cc: Qais Yousef <qais.yousef@imgtec.com> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/11926/ Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 74bf8ef commit 398c750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/mips/vdso/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ aflags-vdso := $(ccflags-vdso) \
2626
# the comments on that file.
2727
#
2828
ifndef CONFIG_CPU_MIPSR6
29-
ifeq ($(call ld-ifversion, -lt, 22500000, y),)
29+
ifeq ($(call ld-ifversion, -lt, 22500000, y),y)
3030
$(warning MIPS VDSO requires binutils >= 2.25)
3131
obj-vdso-y := $(filter-out gettimeofday.o, $(obj-vdso-y))
3232
ccflags-vdso += -DDISABLE_MIPS_VDSO

0 commit comments

Comments
 (0)