for (i = 0; i < sh_count; i++) {
shdr = shdrs + (i * sh_entsize);
name = shstrtab + swap_uint32(shdr->sh_name);
/* * Ensure there are no relocation sections - ld.so does not * relocate the VDSO so if there are relocations things will * break.
*/ switch (swap_uint32(shdr->sh_type)) { case SHT_REL: case SHT_RELA:
fprintf(stderr, "%s: '%s' contains relocation sections\n",
program_name, path); returnfalse;
}
/* Check for existing sections. */ if (strcmp(name, ".MIPS.abiflags") == 0) {
fprintf(stderr, "%s: '%s' already contains a '.MIPS.abiflags' section\n",
program_name, path); returnfalse;
}
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.