diff options
author | John Gilmore <gnu@cygnus> | 1991-10-01 19:46:47 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-01 19:46:47 +0000 |
commit | 3f85ebce789ad99d73fd389751267bfc50acea5c (patch) | |
tree | 1842ed468422a68caa06660c7b068d8c920edb34 /bfd/targets.c | |
parent | 2d996e5dc9674d74130ed76c8c10772c0ee6239b (diff) | |
download | gdb-3f85ebce789ad99d73fd389751267bfc50acea5c.zip gdb-3f85ebce789ad99d73fd389751267bfc50acea5c.tar.gz gdb-3f85ebce789ad99d73fd389751267bfc50acea5c.tar.bz2 |
* Makefile.in, configure.in, targets.c, elf.c: Add preliminary
ELF support good enough for GDB.
* configure.in, config/h-amix, config/t-m68k-elf: Handle
m68k-cbm-svr4 host and target.
Diffstat (limited to 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/bfd/targets.c b/bfd/targets.c index 9bec279..1e42274 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -34,7 +34,7 @@ through a pointer into calls to the back end routines. When a file is opened with @code{bfd_openr}, its format and target are unknown. BFD uses various mechanisms to determine how to interpret the -file. The operatios performed are: +file. The operations performed are: @itemize @bullet @item First a BFD is created by calling the internal routine @@ -122,6 +122,7 @@ of a file. $ enum target_flavour_enum { $ bfd_target_aout_flavour_enum, $ bfd_target_coff_flavour_enum, +$ bfd_target_elf_flavour_enum, $ bfd_target_ieee_flavour_enum, $ bfd_target_oasys_flavour_enum, $ bfd_target_srec_flavour_enum} flavour; @@ -285,6 +286,8 @@ extern bfd_target b_out_vec_little_host; extern bfd_target b_out_vec_big_host; extern bfd_target icoff_little_vec; extern bfd_target icoff_big_vec; +extern bfd_target elf_little_vec; +extern bfd_target elf_big_vec; extern bfd_target ieee_vec; extern bfd_target oasys_vec; extern bfd_target m88k_bcs_vec; @@ -316,6 +319,8 @@ extern bfd_target DEFAULT_VECTOR; #define ECOFF_BIG_VEC ecoff_big_vec #define ICOFF_LITTLE_VEC icoff_little_vec #define ICOFF_BIG_VEC icoff_big_vec +#define ELF_LITTLE_VEC elf_little_vec +#define ELF_BIG_VEC elf_big_vec #define ZB_OUT_VEC_LITTLE_HOST b_out_vec_little_host #define ZB_OUT_VEC_BIG_HOST b_out_vec_big_host #define SUNOS_VEC_BIG_HOST sunos_big_vec @@ -381,6 +386,14 @@ bfd_target *target_vector[] = { &ICOFF_BIG_VEC, #endif /* ICOFF_BIG_VEC */ +#ifdef ELF_LITTLE_VEC + &ELF_LITTLE_VEC, +#endif /* ELF_LITTLE_VEC */ + +#ifdef ELF_BIG_VEC + &ELF_BIG_VEC, +#endif /* ELF_BIG_VEC */ + #ifdef B_OUT_VEC_LITTLE_HOST &B_OUT_VEC_LITTLE_HOST, #endif /* B_OUT_VEC_LITTLE_HOST */ |