forked from M-Labs/artiq
1
0
Fork 0

ksupport.ld: merge sbss with bss

This commit is contained in:
occheung 2021-08-20 16:01:24 +08:00
parent 1ba8c8dfee
commit 279593f984
1 changed files with 2 additions and 2 deletions

View File

@ -65,10 +65,10 @@ SECTIONS
*(.data .data.*) *(.data .data.*)
} }
.bss (NOLOAD) : .bss (NOLOAD) : ALIGN(4)
{ {
_fbss = .; _fbss = .;
*(.bss .bss.*) *(.sbss .sbss.* .bss .bss.*);
. = ALIGN(4); . = ALIGN(4);
_ebss = .; _ebss = .;
} }