diff options
| author | Christian Cunningham <cc@localhost> | 2022-01-31 22:04:24 -0700 |
|---|---|---|
| committer | Christian Cunningham <cc@localhost> | 2022-01-31 22:04:24 -0700 |
| commit | 352c8713ddb99f4b9f3c73b5b6b8bc9e83f6b6bd (patch) | |
| tree | de19d63010ddbc8c42653c81a5ffb7cd07a0da1d /linker.ld | |
| parent | 1b4c8e04ded44fa11a1e95d2db5bef4b8eaddcd1 (diff) | |
All the cores
Diffstat (limited to 'linker.ld')
| -rw-r--r-- | linker.ld | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -30,9 +30,13 @@ SECTIONS .bss : { bss = .; + . = ALIGN(4096); + KEEP(*(.bss.estacks)) + . = ALIGN(4096); + *(.bss) *(.bss.*) - *(.bss.mmheap) - *(.bss.mmheap.base) + KEEP(*(.bss.mmheap)) + KEEP(*(.bss.mmheap.base)) } . = ALIGN(4096); /* align to page size */ __bss_end = .; |
