mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
boot/syslinux: fix build with gcc-15.x
Fixes build error with gcc-15.x: drivers/net/3c509-eisa.c:39:26: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(struct nic *, struct eisa_device *)' [-Wincompatible-pointer-types] For a similar fix see https://bugzilla.suse.com/show_bug.cgi?id=1243225 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
2fbf98da7c
commit
f5101638b9
@@ -65,7 +65,7 @@ define SYSLINUX_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE1) \
|
||||
ASCIIDOC_OK=-1 \
|
||||
A2X_XML_OK=-1 \
|
||||
CC="$(TARGET_CC)" \
|
||||
CC="$(TARGET_CC) -std=gnu17" \
|
||||
LD="$(TARGET_LD)" \
|
||||
OBJCOPY="$(TARGET_OBJCOPY)" \
|
||||
AS="$(TARGET_AS)" \
|
||||
|
||||
Reference in New Issue
Block a user