ksupport.ld: merge sbss with bss

pull/1745/head
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.*)
}
.bss (NOLOAD) :
.bss (NOLOAD) : ALIGN(4)
{
_fbss = .;
*(.bss .bss.*)
*(.sbss .sbss.* .bss .bss.*);
. = ALIGN(4);
_ebss = .;
}