diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2025-05-07 19:20:53 -0400 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-05-13 11:10:58 -0500 |
commit | 7a0ba0634beff8006102c059af92a08f6b3d5a4e (patch) | |
tree | 1f7c54c080d03989ea71a7a8b06a940f1136b215 | |
parent | 0bff199673355cff95f0fc422463ccd9111f0bf1 (diff) | |
download | meta-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.bb | 2 |
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" | |||
19 | inherit update-rc.d | 19 | inherit update-rc.d |
20 | inherit gettext | 20 | inherit gettext |
21 | 21 | ||
22 | CFLAGS += "-fcommon -fpermissive" | 22 | CFLAGS += "-fcommon -fpermissive -std=gnu11" |
23 | 23 | ||
24 | do_configure () { | 24 | do_configure () { |
25 | cd ${S} | 25 | cd ${S} |