diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2007-01-27 22:43:49 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2007-01-27 22:43:49 +0000 |
commit | 914dfb0fe5382a8e17ec08f4245328da07b3a116 (patch) | |
tree | f58324113ca991a19e046495156691693a3581bf /bfd/elf32-hppa.c | |
parent | 40c03ae8b35379347d3afea7bd4ddcb6cc7425c7 (diff) | |
download | gdb-914dfb0fe5382a8e17ec08f4245328da07b3a116.zip gdb-914dfb0fe5382a8e17ec08f4245328da07b3a116.tar.gz gdb-914dfb0fe5382a8e17ec08f4245328da07b3a116.tar.bz2 |
* elf32-hppa.c (elf32_bed): Define for hpux, linux and netbsd.
(INCLUDED_TARGET_FILE): Remove.
Diffstat (limited to 'bfd/elf32-hppa.c')
-rw-r--r-- | bfd/elf32-hppa.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/bfd/elf32-hppa.c b/bfd/elf32-hppa.c index c448aac..fbf6be5 100644 --- a/bfd/elf32-hppa.c +++ b/bfd/elf32-hppa.c @@ -4679,20 +4679,24 @@ elf32_hppa_elf_get_symbol_type (Elf_Internal_Sym *elf_sym, int type) #define ELF_ARCH bfd_arch_hppa #define ELF_MACHINE_CODE EM_PARISC #define ELF_MAXPAGESIZE 0x1000 +#define elf32_bed elf32_hppa_hpux_bed #include "elf32-target.h" #undef TARGET_BIG_SYM -#define TARGET_BIG_SYM bfd_elf32_hppa_linux_vec +#define TARGET_BIG_SYM bfd_elf32_hppa_linux_vec #undef TARGET_BIG_NAME -#define TARGET_BIG_NAME "elf32-hppa-linux" +#define TARGET_BIG_NAME "elf32-hppa-linux" +#undef elf32_bed +#define elf32_bed elf32_hppa_linux_bed -#define INCLUDED_TARGET_FILE 1 #include "elf32-target.h" #undef TARGET_BIG_SYM -#define TARGET_BIG_SYM bfd_elf32_hppa_nbsd_vec +#define TARGET_BIG_SYM bfd_elf32_hppa_nbsd_vec #undef TARGET_BIG_NAME -#define TARGET_BIG_NAME "elf32-hppa-netbsd" +#define TARGET_BIG_NAME "elf32-hppa-netbsd" +#undef elf32_bed +#define elf32_bed elf32_hppa_netbsd_bed #include "elf32-target.h" |