common: remove subalign from data/rodata

SUBALIGN in the linker script overrides __attribute__((aligned(...)))
This commit is contained in:
Zack Buhman 2024-05-19 08:22:05 -05:00
parent a4ae84124a
commit b874ec56b5

View File

@ -16,13 +16,13 @@ SECTIONS
*(.text)
} > p1ram
.data ALIGN(4) : SUBALIGN(4)
.data ALIGN(4) :
{
*(.data)
*(.data.*)
} > p1ram
.rodata ALIGN(4) : SUBALIGN(4)
.rodata ALIGN(4) :
{
*(.rodata)
*(.rodata.*)