mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 09:14:14 +08:00
Teach get_osabi_name about Linux
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2000-02-23 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* readelf.c (get_osabi_name): Handle ELFOSABI_LINUX.
|
||||||
|
|
||||||
2000-02-22 Nick Clifton <nickc@cygnus.com>
|
2000-02-22 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* readelf.c (process_symbol_table): Remove use of ELF_ST_OTHER.
|
* readelf.c (process_symbol_table): Remove use of ELF_ST_OTHER.
|
||||||
|
@ -1933,6 +1933,7 @@ get_osabi_name (osabi)
|
|||||||
{
|
{
|
||||||
case ELFOSABI_SYSV: return _("UNIX - System V");
|
case ELFOSABI_SYSV: return _("UNIX - System V");
|
||||||
case ELFOSABI_HPUX: return _("UNIX - HP-UX");
|
case ELFOSABI_HPUX: return _("UNIX - HP-UX");
|
||||||
|
case ELFOSABI_LINUX: return _("UNIX - Linux");
|
||||||
case ELFOSABI_STANDALONE: return _("Standalone App");
|
case ELFOSABI_STANDALONE: return _("Standalone App");
|
||||||
case ELFOSABI_ARM: return _("ARM");
|
case ELFOSABI_ARM: return _("ARM");
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user