diff options
author | Nick Clifton <nickc@redhat.com> | 1999-11-26 09:52:23 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-11-26 09:52:23 +0000 |
commit | 377418abe9428b93d4cc21ce193852914853893b (patch) | |
tree | b20c25198e842b32785a237f1c959ea36de17952 /bfd/elfxx-target.h | |
parent | 306b73473219d293cd41f9ccca2c2d7078580808 (diff) | |
download | gdb-377418abe9428b93d4cc21ce193852914853893b.tar.gz |
Add support for target specific processing of ELF segments
Diffstat (limited to 'bfd/elfxx-target.h')
-rw-r--r-- | bfd/elfxx-target.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index 2e7579b93be..0a69dd80ee4 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -237,6 +237,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef elf_backend_section_from_shdr #define elf_backend_section_from_shdr 0 #endif +#ifndef elf_backend_section_from_phdr +#define elf_backend_section_from_phdr 0 +#endif #ifndef elf_backend_fake_sections #define elf_backend_fake_sections 0 #endif @@ -358,6 +361,7 @@ static CONST struct elf_backend_data elfNN_bed = elf_backend_get_symbol_type, elf_backend_section_processing, elf_backend_section_from_shdr, + elf_backend_section_from_phdr, elf_backend_fake_sections, elf_backend_section_from_bfd_section, elf_backend_add_symbol_hook, |