diff options
author | Ryan Eatmon <reatmon@ti.com> | 2024-06-03 18:06:12 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-06-15 08:05:34 -0500 |
commit | 427ad9ac71d97f04ddcc0d1c2ef741899f070a99 (patch) | |
tree | 6b1a03b945d7e38d40c2f984af61e5838937eadc | |
parent | 7cad3d456d8c1f112ab5848d8bbee26250962dca (diff) | |
download | meta-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.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 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" | |||
19 | inherit update-rc.d | 19 | inherit update-rc.d |
20 | inherit gettext | 20 | inherit gettext |
21 | 21 | ||
22 | CFLAGS += "-fcommon" | 22 | CFLAGS += "-fcommon -fpermissive" |
23 | 23 | ||
24 | do_configure () { | 24 | do_configure () { |
25 | cd ${S} | 25 | cd ${S} |