diff options
author | John Gilmore <gnu@cygnus> | 1991-10-25 07:06:02 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-25 07:06:02 +0000 |
commit | cbdc790909da22bc1114e681765b152e650aa92b (patch) | |
tree | ca55e91a8ba4fc80a9eed11c59049bdbf1f35dac /bfd/bfd.c | |
parent | c8c0a2bd59cf277c1ebaf857b4e84eff91b94580 (diff) | |
download | gdb-cbdc790909da22bc1114e681765b152e650aa92b.zip gdb-cbdc790909da22bc1114e681765b152e650aa92b.tar.gz gdb-cbdc790909da22bc1114e681765b152e650aa92b.tar.bz2 |
RS/6000 support, by Metin G. Ozisik, Mimi Phûông-Thåo Võ, and John Gilmore.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r-- | bfd/bfd.c | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -162,6 +162,7 @@ $}; #include "sysdep.h" #include "libbfd.h" +#undef strerror extern char *strerror(); @@ -196,6 +197,7 @@ char *bfd_errmsgs[] = { "No error", "File format is ambiguous", "Section has no contents", "Nonrepresentable section on output", + "Symbol needs debug section which does not exist", "#<Invalid error code>" }; @@ -418,6 +420,27 @@ bfd_get_mtime (abfd) #define bfd_set_arch_mach(abfd, arch, mach)\ BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach)) +#define bfd_coff_swap_reloc_out(abfd, i, o) \ + BFD_SEND (abfd, _bfd_coff_swap_reloc_out, (abfd, i, o)) + +#define bfd_coff_swap_lineno_out(abfd, i, o) \ + BFD_SEND (abfd, _bfd_coff_swap_lineno_out, (abfd, i, o)) + +#define bfd_coff_swap_aux_out(abfd, i, t,c,o) \ + BFD_SEND (abfd, _bfd_coff_swap_aux_out, (abfd, i,t,c, o)) + +#define bfd_coff_swap_sym_out(abfd, i,o) \ + BFD_SEND (abfd, _bfd_coff_swap_sym_out, (abfd, i, o)) + +#define bfd_coff_swap_scnhdr_out(abfd, i,o) \ + BFD_SEND (abfd, _bfd_coff_swap_scnhdr_out, (abfd, i, o)) + +#define bfd_coff_swap_filehdr_out(abfd, i,o) \ + BFD_SEND (abfd, _bfd_coff_swap_filehdr_out, (abfd, i, o)) + +#define bfd_coff_swap_aouthdr_out(abfd, i,o) \ + BFD_SEND (abfd, _bfd_coff_swap_aouthdr_out, (abfd, i, o)) + *- */ |