forked from M-Labs/artiq
1
0
Fork 0

bootloader: handle .sbss generation in .ld

Signed-off-by: occheung <dc@m-labs.hk>
This commit is contained in:
occheung 2021-07-15 16:00:23 +08:00
parent 448fe0e8cf
commit 3ff74e0693
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ SECTIONS
.bss : .bss :
{ {
_fbss = .; _fbss = .;
*(.bss .bss.*) *(.sbss .sbss.* .bss .bss.*);
. = ALIGN(4); . = ALIGN(4);
_ebss = .; _ebss = .;
} > sram } > sram