From 78609596c6a11a533dc039d040a8762545a237b4 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 15 Mar 2025 00:29:46 -0700 Subject: [PATCH] m4: Stick to C17 standard GCC15 imposes C23 by default and 1.4.19 release has gnulib version which can not be compiled without errors, while new release of m4 is in progress we might use C17 until then and use GCC15 to compile it (From OE-Core rev: b99f5c44aaa925bdc2a0534458dcb95d1514dc66) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-devtools/m4/m4-1.4.19.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/m4/m4-1.4.19.inc b/meta/recipes-devtools/m4/m4-1.4.19.inc index 8fb13f543b..6a6aa21daf 100644 --- a/meta/recipes-devtools/m4/m4-1.4.19.inc +++ b/meta/recipes-devtools/m4/m4-1.4.19.inc @@ -27,6 +27,8 @@ EXTRA_OECONF += "--without-libsigsegv-prefix" EXTRA_OEMAKE += "'infodir=${infodir}'" +CFLAGS += "-std=gnu17" + do_compile_ptest() { cd ${B}/tests sed -i '/^buildtest-TESTS: /c buildtest-TESTS: $(TESTS) $(check_LIBRARIES) $(check_PROGRAMS)' Makefile