From cd0391b2ea09e816c7953c2aa3f41083b30c3051 Mon Sep 17 00:00:00 2001 From: Ryan Eatmon Date: Tue, 24 Feb 2026 20:46:31 -0600 Subject: [PATCH] gdbc6x: Tweak lcl_maybe_fortify security setting 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 --- meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 2 ++ 1 file changed, 2 insertions(+) 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)}"