SECTIONS
{ /* This must contain the right address - not quite the default ELF one.*/
PROVIDE (__executable_start = START); /* Static binaries stick stuff here, like the sigreturn trampoline, * invisibly to objdump. So, just make __binary_start equal to the very * beginning of the executable, and if there are unmapped pages after this, * they are forever unusable.
*/
__binary_start = START;
/* * These are needed even in a static link, even if they wind up being empty. * Newer glibc needs these __rel{,a}_iplt_{start,end} symbols.
*/
.rel.plt : {
*(.rel.plt)
PROVIDE_HIDDEN(__rel_iplt_start = .);
*(.rel.iplt)
PROVIDE_HIDDEN(__rel_iplt_end = .);
}
.rela.plt : {
*(.rela.plt)
PROVIDE_HIDDEN(__rela_iplt_start = .);
*(.rela.iplt)
PROVIDE_HIDDEN(__rela_iplt_end = .);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.