Fix dlmalloc horror bug - mman_map overwrites application code

This commit is contained in:
2025-09-14 19:07:00 +02:00
parent e6891b39cc
commit 26ff717b50
18 changed files with 197 additions and 137 deletions

View File

@ -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 = .;
}
}