diff options
author | John Darrington <john@darrington.wattle.id.au> | 2018-05-10 12:51:42 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2018-05-10 12:51:42 +0100 |
commit | 637b19704cf8325875de8df4f8b000197d261e3b (patch) | |
tree | c865bb5e04c4a5ce8e298cda2d5506c913f175a2 /include | |
parent | 8727de56b0dbe25b7b4a3bd04f72ac41992463ed (diff) | |
download | gdb-637b19704cf8325875de8df4f8b000197d261e3b.zip gdb-637b19704cf8325875de8df4f8b000197d261e3b.tar.gz gdb-637b19704cf8325875de8df4f8b000197d261e3b.tar.bz2 |
Add support for detecting Freescale S12Z binaries in readelf.
* include/elf/common.h (EM_S12Z): New macro
* binutils/readelf.c (get_machine_name): EM_S12Z - handle new case.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3e74a76..fde5031 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2018-05-10 John Darrington <john@darrington.wattle.id.au> + + * elf/common.h (EM_S12Z): New macro. + 2018-05-09 Sebastian Rasmussen <sebras@gmail.com> * mach-o/unwind.h (MACH_O_UNWIND_X86_64_RBP_FRAME_REGISTERS): diff --git a/include/elf/common.h b/include/elf/common.h index ae4a7b2..773f378 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -368,6 +368,9 @@ /* Unofficial value for Web Assembly binaries, as used by LLVM. */ #define EM_WEBASSEMBLY 0x4157 +/* Freescale S12Z. The Freescale toolchain generates elf files with this value. */ +#define EM_S12Z 0x4DEF + /* DLX magic number. Written in the absense of an ABI. */ #define EM_DLX 0x5aa5 |