From 7a0ba0634beff8006102c059af92a08f6b3d5a4e Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Wed, 7 May 2025 19:20:53 -0400 Subject: gdbc6x: force older GNU/C standard This is an old code base and hasn't been updated in a very long time. It now fails to compile with gcc-15 (C23 standard). Force compilation with GNU/C11 standard instead. Signed-off-by: Denys Dmytriyenko Signed-off-by: Ryan Eatmon --- meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb index 855de762..777a217f 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb @@ -19,7 +19,7 @@ S = "${WORKDIR}/git/gdbc6x" inherit update-rc.d inherit gettext -CFLAGS += "-fcommon -fpermissive" +CFLAGS += "-fcommon -fpermissive -std=gnu11" do_configure () { cd ${S} -- cgit v1.2.3-54-g00ecf