diff options
author | Nick Clifton <nickc@redhat.com> | 2000-01-17 18:09:34 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-01-17 18:09:34 +0000 |
commit | 67a95c88f38aa938757c92389ba59bbc89e7fa79 (patch) | |
tree | 71ea26bcbd68f0266ad7d0d61a85f9607fc82c1a /binutils | |
parent | add0c677654a372f4d8e476554e01c8b85f6879d (diff) | |
download | gdb-67a95c88f38aa938757c92389ba59bbc89e7fa79.zip gdb-67a95c88f38aa938757c92389ba59bbc89e7fa79.tar.gz gdb-67a95c88f38aa938757c92389ba59bbc89e7fa79.tar.bz2 |
Detect ELFOSABI_ARM.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index af90dae..d33638b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-01-17 Nick Clifton <nickc@cygnus.com> + + * readelf.c (get_osabi_name): Recognise ELFOSABI_ARM. + 2000-01-15 Alan Modra <alan@spri.levels.unisa.edu.au> * debug.c (debug_name_type): Return DEBUG_TYPE_NULL rather than diff --git a/binutils/readelf.c b/binutils/readelf.c index aeeae9e..aefdd22 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1934,6 +1934,7 @@ get_osabi_name (osabi) case ELFOSABI_SYSV: return _("UNIX - System V"); case ELFOSABI_HPUX: return _("UNIX - HP-UX"); case ELFOSABI_STANDALONE: return _("Standalone App"); + case ELFOSABI_ARM: return _("ARM"); default: sprintf (buff, _("<unknown: %x>"), osabi); return buff; |