Compare commits

...

2 Commits

2 changed files with 12 additions and 2 deletions

View File

@ -180,7 +180,8 @@ sub import_trace {
( (
"$fail_prune", "--database-option-file $remote_db_conf", "$fail_prune", "--database-option-file $remote_db_conf",
"-v $experiment", "-b %%", "-v $experiment", "-b %%",
'-p NoPruner', #'-p NoPruner',
`-p BasicPruner`,
"--overwrite", ">$remote_builds_dir/$experiment/2_prune.log" "--overwrite", ">$remote_builds_dir/$experiment/2_prune.log"
); );
say "Prune command: $prune_command"; say "Prune command: $prune_command";

View File

@ -45,12 +45,21 @@ SECTIONS {
/* . += 16; /\* padding after data, workaround for import-trace *\/ */ /* . += 16; /\* padding after data, workaround for import-trace *\/ */
KEEP (*(".text.startup")) KEEP (*(".text.startup"))
. = ALIGN(4096);
_wamr_aot_start = .;
*(".text.wamr_aot") *(".text.wamr_aot")
*(".text*") _wamr_aot_end = .;
. = ALIGN(4096); . = ALIGN(4096);
_wamr_mmap_start = .; _wamr_mmap_start = .;
*(".text.wamr_mmap") *(".text.wamr_mmap")
_wamr_mmap_end = .; _wamr_mmap_end = .;
/* .wamr_aot and .wamr_mmap have to be placed before .text,
* otherwise they'll be caught by the wildcard */
*(".text*")
*(".rodata*") *(".rodata*")
} }