Get rid of manual HEAP_BASE align, finally

This commit is contained in:
2021-07-17 01:57:03 +03:00
parent d3cc2b0800
commit 9fa1ef9625
2 changed files with 34 additions and 18 deletions
+11
View File
@@ -5,5 +5,16 @@ SECTIONS
{
*(SORT_BY_NAME(.data.align*))
}
}
INSERT AFTER .data;
SECTIONS
{
. = ALIGN(65536);
.bss.aligned :
{
*(SORT_BY_NAME(.bss.align*))
}
}
INSERT AFTER .bss;