diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-05-11 09:57:20 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-05-11 09:57:21 -0700 |
commit | 6c14750f48f179e0fed8abc34010de3e05ec2a54 (patch) | |
tree | ddd595bd8880b8c73a7b058e840f44cfcdbaf949 /binutils/doc | |
parent | 22abe5566abcf48d81c4b485de722f2634d394f2 (diff) | |
download | gdb-6c14750f48f179e0fed8abc34010de3e05ec2a54.zip gdb-6c14750f48f179e0fed8abc34010de3e05ec2a54.tar.gz gdb-6c14750f48f179e0fed8abc34010de3e05ec2a54.tar.bz2 |
Add EM_386/EM_IAMCU support to elfedit.c
binutils/
* elfedit.c (enum elfclass): New.
(input_elf_class): Change type to enum elfclass.
(output_elf_class): New.
(elf_class): Change return type to enum elfclass. Support EM_386
and EM_IAMCU.
(update_elf_header): Check if input and output ELF classes match.
(elf_machine): Support EM_386 and EM_IAMCU.
(main): Update input_elf_class. Set output_elf_class.
* doc/binutils.texi: Update elfedit.
binutils/testsuite/
* binutils-all/elfedit-5.d: New file.
* binutils-all/elfedit.exp: Run elfedit-5.
Diffstat (limited to 'binutils/doc')
-rw-r--r-- | binutils/doc/binutils.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi index dbf44c9..601de48 100644 --- a/binutils/doc/binutils.texi +++ b/binutils/doc/binutils.texi @@ -4614,8 +4614,8 @@ Set the matching input ELF machine type to @var{machine}. If @option{--input-mach} isn't specified, it will match any ELF machine types. -The supported ELF machine types are, @var{L1OM}, @var{K1OM} and -@var{x86-64}. +The supported ELF machine types are, @var{i386}, @var{IAMCU}, @var{L1OM}, +@var{K1OM} and @var{x86-64}. @item --output-mach=@var{machine} Change the ELF machine type in the ELF header to @var{machine}. The |