pin new wamr commit + add .text.wamr_mmap section to linker.ld

This commit is contained in:
2026-05-17 21:22:13 +02:00
parent 99e8c80dc7
commit ddbd6fa8d1
2 changed files with 463 additions and 446 deletions

View File

@ -45,7 +45,12 @@ SECTIONS {
/* . += 16; /\* padding after data, workaround for import-trace *\/ */
KEEP (*(".text.startup"))
*(".text.wamr_aot")
*(".text*")
. = ALIGN(4096);
_wamr_mmap_start = .;
*(".text.wamr_mmap")
_wamr_mmap_end = .;
*(".rodata*")
}