boards/qemu-intel64: align _etbss to fix TLS block size mismatch

Align _etbss in the linker script so (_etbss - _stdata) matches the
compiler's aligned TLS block size.

Fix ostest failure for CONFIG_SCHED_THREAD_LOCAL=y

Signed-off-by: raiden00pl <raiden00@railab.me>
This commit is contained in:
raiden00pl 2026-04-21 11:31:59 +02:00 committed by Xiang Xiao
parent a9e9607d95
commit 7141f487c0

View file

@ -113,6 +113,7 @@ SECTIONS
_etdata = ABSOLUTE(.);
_stbss = ABSOLUTE(.);
*(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon);
. = ALIGN(16);
_etbss = ABSOLUTE(.);
}