diff options
Diffstat (limited to 'linker.ld')
-rw-r--r-- | linker.ld | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,9 +29,9 @@ SECTIONS .bss : { bss = .; - *(.bss*) - KEEP(*(.bss.mmheap)) - KEEP(*(.bss.heap)) + *(.bss.*) + *(.bss.mmheap) + *(.bss.mmheap.base) } . = ALIGN(4096); /* align to page size */ __bss_end = .; |