aboutsummaryrefslogtreecommitdiff
path: root/bfd/bfd.c
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-10-25 07:06:02 +0000
committerJohn Gilmore <gnu@cygnus>1991-10-25 07:06:02 +0000
commitcbdc790909da22bc1114e681765b152e650aa92b (patch)
treeca55e91a8ba4fc80a9eed11c59049bdbf1f35dac /bfd/bfd.c
parentc8c0a2bd59cf277c1ebaf857b4e84eff91b94580 (diff)
downloadgdb-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.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/bfd/bfd.c b/bfd/bfd.c
index 1d465b1..ccf53ce 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -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))
+
*-
*/