Fix linker script section placement
This commit is contained in:
parent
156642293f
commit
496445e533
@ -16,6 +16,7 @@ SECTIONS
|
||||
.text :
|
||||
{
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
}
|
||||
|
||||
. = ALIGN(4K);
|
||||
@ -25,6 +26,7 @@ SECTIONS
|
||||
.rodata :
|
||||
{
|
||||
*(.rodata)
|
||||
*(.rodata.*)
|
||||
}
|
||||
|
||||
. = ALIGN(4K);
|
||||
@ -35,6 +37,7 @@ SECTIONS
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
*(.data.*)
|
||||
}
|
||||
|
||||
. = ALIGN(4K);
|
||||
@ -46,6 +49,7 @@ SECTIONS
|
||||
{
|
||||
*(COMMON)
|
||||
*(.bss)
|
||||
*(.bss.*)
|
||||
}
|
||||
|
||||
. = ALIGN(4K);
|
||||
|
Loading…
x
Reference in New Issue
Block a user