Home | History | Annotate | Download | only in binutils

Lines Matching refs:osabi

93   int class, machine, type, status, osabi;
164 osabi = elf_header.e_ident[EI_OSABI];
166 /* Skip if OSABI doesn't match. */
167 if (input_elf_osabi != -1 && osabi != input_elf_osabi)
171 file_name, osabi, input_elf_osabi);
553 int osabi;
576 /* Return ELFOSABI_XXX for an OSABI string, OSABI. */
579 elf_osabi (const char *osabi)
584 if (strcasecmp (osabi, osabis[i].name) == 0)
585 return osabis[i].osabi;
587 error (_("Unknown OSABI: %s\n"), osabi);
652 {"input-osabi", required_argument, 0, OPTION_INPUT_OSABI},
653 {"output-osabi", required_argument, 0, OPTION_OUTPUT_OSABI},
671 --input-osabi <osabi> Set input OSABI to <osabi>\n\
672 --output-osabi <osabi> Set output OSABI to <osabi>\n\