Skip to content

Commit 1c50a1a

Browse files
Josua-SRlizthegrey
authored andcommitted
fiptool: disable pedantic flag to avoid errors with older libc
This change disarms soime pedantic errors encountered when using a new gcc-13 with older system glibc headers. In particular when using yocto with a buildtools tarball thius situation can occur. Signed-off-by: Josua Mayer <josua@solid-run.com>
1 parent a266ff4 commit 1c50a1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/fiptool/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ OBJECTS := fiptool.o tbbr_config.o
1717
STATIC ?= 0
1818

1919
override CPPFLAGS += -D_GNU_SOURCE -D_XOPEN_SOURCE=700
20-
HOSTCCFLAGS := -Wall -Werror -pedantic -std=c99
20+
HOSTCCFLAGS := -Wall -Werror -std=c99
2121
ifeq (${DEBUG},1)
2222
HOSTCCFLAGS += -g -O0 -DDEBUG
2323
else

0 commit comments

Comments
 (0)