mirror of https://github.com/m-labs/artiq.git
ksupport.ld: merge sbss with bss
This commit is contained in:
parent
1ba8c8dfee
commit
279593f984
|
@ -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 = .;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue