From c42adfe6fd8d52d03aeb3bbecf6ddba2f07e6d56 Mon Sep 17 00:00:00 2001 From: occheung Date: Fri, 6 Aug 2021 11:11:25 +0800 Subject: [PATCH] runtime.ld: merge .sbss & .bss --- artiq/firmware/runtime/runtime.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/runtime.ld b/artiq/firmware/runtime/runtime.ld index a7bcc5a0d..c93a5e4b1 100644 --- a/artiq/firmware/runtime/runtime.ld +++ b/artiq/firmware/runtime/runtime.ld @@ -61,7 +61,7 @@ SECTIONS .bss ALIGN(4) : { _fbss = .; - *(.bss .bss.*) + *(.sbss .sbss.* .bss .bss.*); _ebss = .; } > runtime