mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-11 15:33:04 +00:00
base: provide BSS boundary marks in genode.ld
This enables us to use the generic linker script for base-hw also. Ref #766
This commit is contained in:
parent
6b42fff30e
commit
ee4c98e093
@ -109,8 +109,10 @@ SECTIONS
|
|||||||
} : rw
|
} : rw
|
||||||
|
|
||||||
.bss : {
|
.bss : {
|
||||||
|
_bss_start = ALIGN(4);
|
||||||
*(.bss .bss.* .gnu.linkonce.b.* COMMON)
|
*(.bss .bss.* .gnu.linkonce.b.* COMMON)
|
||||||
}
|
}
|
||||||
|
_bss_end = ALIGN(4);
|
||||||
|
|
||||||
/* end of program image -- must be after last section */
|
/* end of program image -- must be after last section */
|
||||||
_prog_img_end = .;
|
_prog_img_end = .;
|
||||||
|
Loading…
Reference in New Issue
Block a user