From 13b41275218b84188e13d2d01c55a160b5685710 Mon Sep 17 00:00:00 2001 From: Egor Tsyganchuk Date: Wed, 18 Feb 2026 11:48:20 +0300 Subject: [PATCH] Revert: remove -fno-stack-protector from CFLAGS_TARGET Was not the root cause of the __aeabi_read_tp linker error. Co-Authored-By: Claude Sonnet 4.6 --- env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.sh b/env.sh index 097b6f1..c838fbb 100755 --- a/env.sh +++ b/env.sh @@ -38,7 +38,7 @@ _env_register() { # Флаги тулчейна CFLAGS_TOOLSET='-O2' - CFLAGS_TARGET='-Os -mthumb -fno-stack-protector' + CFLAGS_TARGET='-Os -mthumb' CXXFLAGS_TARGET=$CFLAGS_TARGET LDFLAGS_TARGET='-Wl,--fdpic'