diff mbox series

[meta-ti,master,4/4] gdbc6x: Tweak SECURITY_STRINGFORMAT

Message ID 20260225024907.2908365-4-reatmon@ti.com
State Superseded
Delegated to: Ryan Eatmon
Headers show
Series [meta-ti,master,1/4,v2] ti-rpmsg-char: Set DISABLE_STATIC = "" | expand

Commit Message

Ryan Eatmon Feb. 25, 2026, 2:49 a.m. UTC
A change in oe-core [1] has turned on higher security checks, but gdbc6x
will not build with FORTIFY_SOURCE turned on.  Remove that setting to
get it building again.

[1] https://git.openembedded.org/openembedded-core/commit/?id=4c2d64c10a5b0437ab1ea04df22386f0f95124d1

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
index 521d06fe..6b90b4f0 100644
--- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
+++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
@@ -51,3 +51,5 @@  PARALLEL_MAKE = ""
 # Disable the "buildpaths" check while we figure out how we are
 # going to address this issue.
 INSANE_SKIP:${PN} += "buildpaths"
+
+lcl_maybe_fortify = "${@oe.utils.conditional('OPTLEVEL','-O0','','${OPTLEVEL}',d)}"