Compare commits
2 Commits
8ac7cf8a70
...
7846a2f3b6
| Author | SHA1 | Date | |
|---|---|---|---|
|
7846a2f3b6
|
|||
|
8f5e6f35b4
|
@ -180,7 +180,8 @@ sub import_trace {
|
||||
(
|
||||
"$fail_prune", "--database-option-file $remote_db_conf",
|
||||
"-v $experiment", "-b %%",
|
||||
'-p NoPruner',
|
||||
#'-p NoPruner',
|
||||
`-p BasicPruner`,
|
||||
"--overwrite", ">$remote_builds_dir/$experiment/2_prune.log"
|
||||
);
|
||||
say "Prune command: $prune_command";
|
||||
|
||||
@ -45,12 +45,21 @@ SECTIONS {
|
||||
/* . += 16; /\* padding after data, workaround for import-trace *\/ */
|
||||
|
||||
KEEP (*(".text.startup"))
|
||||
|
||||
. = ALIGN(4096);
|
||||
_wamr_aot_start = .;
|
||||
*(".text.wamr_aot")
|
||||
*(".text*")
|
||||
_wamr_aot_end = .;
|
||||
|
||||
. = ALIGN(4096);
|
||||
_wamr_mmap_start = .;
|
||||
*(".text.wamr_mmap")
|
||||
_wamr_mmap_end = .;
|
||||
|
||||
/* .wamr_aot and .wamr_mmap have to be placed before .text,
|
||||
* otherwise they'll be caught by the wildcard */
|
||||
*(".text*")
|
||||
|
||||
*(".rodata*")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user