Fix dlmalloc horror bug - mman_map overwrites application code
This commit is contained in:
@ -5,23 +5,23 @@ SECTIONS {
|
||||
|
||||
.text ALIGN(4K):
|
||||
{
|
||||
*(.text .text.*)
|
||||
*(.text .text*)
|
||||
}
|
||||
|
||||
.rodata (READONLY): ALIGN(4K)
|
||||
{
|
||||
*(.rodata .rodata.*)
|
||||
*(.rodata .rodata*)
|
||||
}
|
||||
|
||||
.data ALIGN(4K):
|
||||
{
|
||||
*(.data .data.*)
|
||||
*(.data .data*)
|
||||
}
|
||||
|
||||
.bss ALIGN(4K):
|
||||
{
|
||||
_bss_start = .;
|
||||
*(.bss .bss.*)
|
||||
*(.bss .bss*)
|
||||
_bss_end = .;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user