Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3422 → Rev 3423

/branches/dynload/uspace/app/dltest/arch/ppc32/_link.ld.in
2,11 → 2,16
ENTRY(__entry)
 
PHDRS {
interp PT_INTERP;
text PT_LOAD FLAGS(5);
data PT_LOAD FLAGS(6);
}
 
SECTIONS {
.interp : {
*(.interp);
} :interp
 
. = 0x1000;
 
.init ALIGN(0x1000) : SUBALIGN(0x1000) {
20,7 → 25,7
 
.rel.plt ALIGN(0x1000) : {
*(.rel.plt);
}
} :text
/*
*.rel.dyn MUST FOLLOW IMMEDIATELY after .rel.plt
* without alignment gap or DT_REL will be broken
29,10 → 34,6
*(.rel.*);
} :text
 
.interp : {
*(.interp);
}
 
.dynamic ALIGN(0x1000) : {
*(.dynamic);
} :text