From 427ad9ac71d97f04ddcc0d1c2ef741899f070a99 Mon Sep 17 00:00:00 2001 From: Ryan Eatmon Date: Mon, 3 Jun 2024 18:06:12 -0500 Subject: gdbc6x: Update for gcc v14 support One of the changes in gcc v14 is making implicit-function-declaration an error. For some older software packages the easiest fix is to add -fpermissive to the compile line. 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 d3ada9c6..012136ac 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" +CFLAGS += "-fcommon -fpermissive" do_configure () { cd ${S} -- cgit v1.2.3-54-g00ecf