summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2025-05-07 19:20:53 -0400
committerRyan Eatmon <reatmon@ti.com>2025-05-13 11:10:58 -0500
commit7a0ba0634beff8006102c059af92a08f6b3d5a4e (patch)
tree1f7c54c080d03989ea71a7a8b06a940f1136b215
parent0bff199673355cff95f0fc422463ccd9111f0bf1 (diff)
downloadmeta-ti-7a0ba0634beff8006102c059af92a08f6b3d5a4e.tar.gz
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 <denys@konsulko.com> 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 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"
19inherit update-rc.d 19inherit update-rc.d
20inherit gettext 20inherit gettext
21 21
22CFLAGS += "-fcommon -fpermissive" 22CFLAGS += "-fcommon -fpermissive -std=gnu11"
23 23
24do_configure () { 24do_configure () {
25 cd ${S} 25 cd ${S}