summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2024-06-03 18:06:12 -0500
committerRyan Eatmon <reatmon@ti.com>2024-06-15 08:05:34 -0500
commit427ad9ac71d97f04ddcc0d1c2ef741899f070a99 (patch)
tree6b1a03b945d7e38d40c2f984af61e5838937eadc
parent7cad3d456d8c1f112ab5848d8bbee26250962dca (diff)
downloadmeta-ti-427ad9ac71d97f04ddcc0d1c2ef741899f070a99.tar.gz
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 <reatmon@ti.com>
-rw-r--r--meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb2
1 files changed, 1 insertions, 1 deletions
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"
19inherit update-rc.d 19inherit update-rc.d
20inherit gettext 20inherit gettext
21 21
22CFLAGS += "-fcommon" 22CFLAGS += "-fcommon -fpermissive"
23 23
24do_configure () { 24do_configure () {
25 cd ${S} 25 cd ${S}