Support for building as a shared library, based on patches from
[deliverable/binutils-gdb.git] / bfd / aoutx.h
index 8c6ebb13de5e7bfd111853c68cc5e18b501cc8cb..6ea54d1bc9ebe36922240335021402e2ad6c1392 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD semi-generic back-end for a.out binaries.
-   Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+   Copyright 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
 This file is part of BFD, the Binary File Descriptor library.
@@ -117,10 +117,10 @@ DESCRIPTION
    (Just want to make these explicit, so the conditions tested in this
    file make sense if you're more familiar with a.out than with BFD.)  */
 
-#define KEEPIT flags
-#define KEEPITTYPE int
+#define KEEPIT udata.i
 
 #include <string.h>            /* For strchr and friends */
+#include <ctype.h>
 #include "bfd.h"
 #include <sysdep.h>
 #include "bfdlink.h"
@@ -166,6 +166,14 @@ DESCRIPTION
 #define MY_swap_std_reloc_out NAME(aout,swap_std_reloc_out)
 #endif
 
+#ifndef MY_final_link_relocate
+#define MY_final_link_relocate _bfd_final_link_relocate
+#endif
+
+#ifndef MY_relocate_contents
+#define MY_relocate_contents _bfd_relocate_contents
+#endif
+
 #define howto_table_ext NAME(aout,ext_howto_table)
 #define howto_table_std NAME(aout,std_howto_table)
 
@@ -186,12 +194,12 @@ reloc_howto_type howto_table_ext[] =
   HOWTO(RELOC_LO10,   0,  2,   10, false, 0, complain_overflow_dont,0,"LO10",     false, 0,0x000003ff, false),
   HOWTO(RELOC_SFA_BASE,0, 2,   32, false, 0, complain_overflow_bitfield,0,"SFA_BASE", false, 0,0xffffffff, false),
   HOWTO(RELOC_SFA_OFF13,0,2,   32, false, 0, complain_overflow_bitfield,0,"SFA_OFF13",false, 0,0xffffffff, false),
-  HOWTO(RELOC_BASE10, 0,  2,   16, false, 0, complain_overflow_bitfield,0,"BASE10",   false, 0,0x0000ffff, false),
+  HOWTO(RELOC_BASE10, 0,  2,   10, false, 0, complain_overflow_dont,0,"BASE10",   false, 0,0x000003ff, false),
   HOWTO(RELOC_BASE13, 0,  2,   13, false, 0, complain_overflow_bitfield,0,"BASE13",   false, 0,0x00001fff, false),
-  HOWTO(RELOC_BASE22, 0,  2,   0,  false, 0, complain_overflow_bitfield,0,"BASE22",   false, 0,0x00000000, false),
-  HOWTO(RELOC_PC10,   0,  2,   10, false, 0, complain_overflow_bitfield,0,"PC10",      false, 0,0x000003ff, false),
-  HOWTO(RELOC_PC22,   0,  2,   22, false, 0, complain_overflow_bitfield,0,"PC22",      false, 0,0x003fffff, false),
-  HOWTO(RELOC_JMP_TBL,0,  2,   32, false, 0, complain_overflow_bitfield,0,"JMP_TBL",   false, 0,0xffffffff, false),
+  HOWTO(RELOC_BASE22, 10, 2,   22, false, 0, complain_overflow_bitfield,0,"BASE22",   false, 0,0x003fffff, false),
+  HOWTO(RELOC_PC10,   0,  2,   10, true,  0, complain_overflow_dont,0,"PC10",  false, 0,0x000003ff, true),
+  HOWTO(RELOC_PC22,   10,  2,  22, true,  0, complain_overflow_signed,0,"PC22", false, 0,0x003fffff, true),
+  HOWTO(RELOC_JMP_TBL,2,  2,   30, true,  0, complain_overflow_signed,0,"JMP_TBL",     false, 0,0x3fffffff, false),
   HOWTO(RELOC_SEGOFF16,0, 2,   0,  false, 0, complain_overflow_bitfield,0,"SEGOFF16",  false, 0,0x00000000, false),
   HOWTO(RELOC_GLOB_DAT,0, 2,   0,  false, 0, complain_overflow_bitfield,0,"GLOB_DAT",  false, 0,0x00000000, false),
   HOWTO(RELOC_JMP_SLOT,0, 2,   0,  false, 0, complain_overflow_bitfield,0,"JMP_SLOT",  false, 0,0x00000000, false),
@@ -267,7 +275,13 @@ NAME(aout,reloc_type_lookup) (abfd,code)
        EXT (BFD_RELOC_32_PCREL_S2, 6);
        EXT (BFD_RELOC_SPARC_WDISP22, 7);
        EXT (BFD_RELOC_SPARC13, 10);
+       EXT (BFD_RELOC_SPARC_GOT10, 14);
        EXT (BFD_RELOC_SPARC_BASE13, 15);
+       EXT (BFD_RELOC_SPARC_GOT13, 15);
+       EXT (BFD_RELOC_SPARC_GOT22, 16);
+       EXT (BFD_RELOC_SPARC_PC10, 17);
+       EXT (BFD_RELOC_SPARC_PC22, 18);
+       EXT (BFD_RELOC_SPARC_WPLT30, 19);
       default: return (reloc_howto_type *) NULL;
       }
   else
@@ -417,10 +431,8 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
   const bfd_target *result;
 
   rawptr = (struct aout_data_struct  *) bfd_zalloc (abfd, sizeof (struct aout_data_struct ));
-  if (rawptr == NULL) {
-    bfd_set_error (bfd_error_no_memory);
+  if (rawptr == NULL)
     return 0;
-  }
 
   oldrawptr = abfd->tdata.aout_data;
   abfd->tdata.aout_data = rawptr;
@@ -483,6 +495,10 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
   /* The default symbol entry size is that of traditional Unix. */
   obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE;
 
+#ifdef USE_MMAP
+  bfd_init_window (&obj_aout_sym_window (abfd));
+  bfd_init_window (&obj_aout_string_window (abfd));
+#endif
   obj_aout_external_syms (abfd) = NULL;
   obj_aout_external_strings (abfd) = NULL;
   obj_aout_sym_hashes (abfd) = NULL;
@@ -544,7 +560,7 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
     break;
   }
 
-  adata(abfd)->page_size = PAGE_SIZE;
+  adata(abfd)->page_size = TARGET_PAGE_SIZE;
   adata(abfd)->segment_size = SEGMENT_SIZE;
   adata(abfd)->exec_bytes_size = EXEC_BYTES_SIZE;
 
@@ -582,7 +598,8 @@ NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
         the default text start (obj_textsec(abfd)->vma) and
         (obj_textsec(abfd)->vma) + text size.  This is not just a mach
         issue.  Many kernels are loaded at non standard addresses.  */
-      if (abfd->iostream
+      if (abfd->iostream != NULL
+         && (abfd->flags & BFD_IN_MEMORY) == 0
          && (fstat(fileno((FILE *) (abfd->iostream)), &stat_buf) == 0)
          && ((stat_buf.st_mode & 0111) != 0))
        abfd->flags |= EXEC_P;
@@ -627,10 +644,8 @@ NAME(aout,mkobject) (abfd)
   /* Use an intermediate variable for clarity */
   rawptr = (struct aout_data_struct *)bfd_zalloc (abfd, sizeof (struct aout_data_struct ));
 
-  if (rawptr == NULL) {
-    bfd_set_error (bfd_error_no_memory);
+  if (rawptr == NULL)
     return false;
-  }
 
   abfd->tdata.aout_data = rawptr;
   exec_hdr (abfd) = &(rawptr->e);
@@ -675,7 +690,10 @@ NAME(aout,machine_type) (arch, machine, unknown)
 
   switch (arch) {
   case bfd_arch_sparc:
-    if (machine == 0)  arch_flags = M_SPARC;
+    if (machine == 0
+       || machine == bfd_mach_sparc
+       || machine == bfd_mach_sparc64)
+      arch_flags = M_SPARC;
     break;
 
   case bfd_arch_m68k:
@@ -1040,7 +1058,7 @@ NAME(aout,adjust_sizes_and_vmas) (abfd, text_size, text_end)
   /* Rule (heuristic) for when to pad to a new page.  Note that there
      are (at least) two ways demand-paged (ZMAGIC) files have been
      handled.  Most Berkeley-based systems start the text segment at
-     (PAGE_SIZE).  However, newer versions of SUNOS start the text
+     (TARGET_PAGE_SIZE).  However, newer versions of SUNOS start the text
      segment right after the exec header; the latter is counted in the
      text segment size, and is paged in by the kernel with the rest of
      the text. */
@@ -1183,6 +1201,9 @@ NAME(aout,set_section_contents) (abfd, section, location, offset, count)
   if (section != obj_textsec (abfd)
       && section != obj_datasec (abfd))
     {
+      (*_bfd_error_handler)
+       ("%s: can not represent section `%s' in a.out object file format",
+        bfd_get_filename (abfd), bfd_get_section_name (abfd, section));
       bfd_set_error (bfd_error_nonrepresentable_section);
       return false;
     }
@@ -1210,16 +1231,20 @@ aout_get_external_symbols (abfd)
 
       count = exec_hdr (abfd)->a_syms / EXTERNAL_NLIST_SIZE;
 
+#ifdef USE_MMAP
+      if (bfd_get_file_window (abfd,
+                              obj_sym_filepos (abfd), exec_hdr (abfd)->a_syms,
+                              &obj_aout_sym_window (abfd), true) == false)
+       return false;
+      syms = (struct external_nlist *) obj_aout_sym_window (abfd).data;
+#else
       /* We allocate using malloc to make the values easy to free
         later on.  If we put them on the obstack it might not be
         possible to free them.  */
       syms = ((struct external_nlist *)
-             malloc ((size_t) count * EXTERNAL_NLIST_SIZE));
+             bfd_malloc ((size_t) count * EXTERNAL_NLIST_SIZE));
       if (syms == (struct external_nlist *) NULL && count != 0)
-       {
-         bfd_set_error (bfd_error_no_memory);
-         return false;
-       }
+       return false;
 
       if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
          || (bfd_read (syms, 1, exec_hdr (abfd)->a_syms, abfd)
@@ -1228,6 +1253,7 @@ aout_get_external_symbols (abfd)
          free (syms);
          return false;
        }
+#endif
 
       obj_aout_external_syms (abfd) = syms;
       obj_aout_external_sym_count (abfd) = count;
@@ -1247,12 +1273,15 @@ aout_get_external_symbols (abfd)
        return false;
       stringsize = GET_WORD (abfd, string_chars);
 
-      strings = (char *) malloc ((size_t) stringsize + 1);
+#ifdef USE_MMAP
+      if (bfd_get_file_window (abfd, obj_str_filepos (abfd), stringsize,
+                              &obj_aout_string_window (abfd), true) == false)
+       return false;
+      strings = (char *) obj_aout_string_window (abfd).data;
+#else
+      strings = (char *) bfd_malloc ((size_t) stringsize + 1);
       if (strings == NULL)
-       {
-         bfd_set_error (bfd_error_no_memory);
-         return false;
-       }
+       return false;
 
       /* Skip space for the string count in the buffer for convenience
         when using indexes.  */
@@ -1263,12 +1292,12 @@ aout_get_external_symbols (abfd)
          free (strings);
          return false;
        }
+#endif
 
       /* Ensure that a zero index yields an empty string.  */
       strings[0] = '\0';
 
-      /* Sanity preservation.  */
-      strings[stringsize] = '\0';
+      strings[stringsize - 1] = 0;
 
       obj_aout_external_strings (abfd) = strings;
       obj_aout_external_string_size (abfd) = stringsize;
@@ -1403,10 +1432,7 @@ translate_from_native_sym_flags (abfd, cache_ptr)
 
            copy = bfd_alloc (abfd, strlen (cache_ptr->symbol.name) + 1);
            if (copy == NULL)
-             {
-               bfd_set_error (bfd_error_no_memory);
-               return false;
-             }
+             return false;
 
            strcpy (copy, cache_ptr->symbol.name);
            section = bfd_make_section (abfd, copy);
@@ -1416,10 +1442,7 @@ translate_from_native_sym_flags (abfd, cache_ptr)
 
        reloc = (arelent_chain *) bfd_alloc (abfd, sizeof (arelent_chain));
        if (reloc == NULL)
-         {
-           bfd_set_error (bfd_error_no_memory);
-           return false;
-         }
+         return false;
 
        /* Build a relocation entry for the constructor.  */
        switch (cache_ptr->type & N_TYPE)
@@ -1473,16 +1496,7 @@ translate_from_native_sym_flags (abfd, cache_ptr)
         symbol is the symbol to associate the warning with.  If a
         reference is made to that symbol, a warning is issued.  */
       cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING;
-
-      /* @@ Stuffing pointers into integers is a no-no.  We can
-        usually get away with it if the integer is large enough
-        though.  */
-      if (sizeof (cache_ptr + 1) > sizeof (bfd_vma))
-       abort ();
-      cache_ptr->symbol.value = (bfd_vma) (cache_ptr + 1);
-
       cache_ptr->symbol.section = bfd_abs_section_ptr;
-
       break;
 
     case N_INDR: case N_INDR | N_EXT:
@@ -1491,16 +1505,7 @@ translate_from_native_sym_flags (abfd, cache_ptr)
         symbol is the name of the target.  A reference to the first
         symbol becomes a reference to the second.  */
       cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible;
-
-      /* @@ Stuffing pointers into integers is a no-no.  We can
-        usually get away with it if the integer is large enough
-        though.  */
-      if (sizeof (cache_ptr + 1) > sizeof (bfd_vma))
-       abort ();
-      cache_ptr->symbol.value = (bfd_vma) (cache_ptr + 1);
-
       cache_ptr->symbol.section = bfd_ind_section_ptr;
-
       break;
 
     case N_WEAKU:
@@ -1558,6 +1563,9 @@ translate_to_native_sym_flags (abfd, cache_ptr, sym_pointer)
     {
       /* This case occurs, e.g., for the *DEBUG* section of a COFF
         file.  */
+      (*_bfd_error_handler)
+       ("%s: can not represent section `%s' in a.out object file format",
+        bfd_get_filename (abfd), bfd_get_section_name (abfd, sec));
       bfd_set_error (bfd_error_nonrepresentable_section);
       return false;
     }
@@ -1584,6 +1592,9 @@ translate_to_native_sym_flags (abfd, cache_ptr, sym_pointer)
     sym_pointer->e_type[0] = N_UNDF | N_EXT;
   else
     {
+      (*_bfd_error_handler)
+       ("%s: can not represent section `%s' in a.out object file format",
+        bfd_get_filename (abfd), bfd_get_section_name (abfd, sec));
       bfd_set_error (bfd_error_nonrepresentable_section);
       return false;
     }
@@ -1642,10 +1653,7 @@ NAME(aout,make_empty_symbol) (abfd)
   aout_symbol_type  *new =
     (aout_symbol_type *)bfd_zalloc (abfd, sizeof (aout_symbol_type));
   if (!new)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return NULL;
-    }
+    return NULL;
   new->symbol.the_bfd = abfd;
 
   return &new->symbol;
@@ -1724,12 +1732,9 @@ NAME(aout,slurp_symbol_table) (abfd)
 
   cached_size = (obj_aout_external_sym_count (abfd)
                 * sizeof (aout_symbol_type));
-  cached = (aout_symbol_type *) malloc (cached_size);
+  cached = (aout_symbol_type *) bfd_malloc (cached_size);
   if (cached == NULL && cached_size != 0)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return false;
-    }
+    return false;
   if (cached_size != 0)
     memset (cached, 0, cached_size);
 
@@ -1757,7 +1762,11 @@ NAME(aout,slurp_symbol_table) (abfd)
   if (old_external_syms == (struct external_nlist *) NULL
       && obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
     {
+#ifdef USE_MMAP
+      bfd_free_window (&obj_aout_sym_window (abfd));
+#else
       free (obj_aout_external_syms (abfd));
+#endif
       obj_aout_external_syms (abfd) = NULL;
     }
 
@@ -1873,7 +1882,7 @@ NAME(aout,write_syms) (abfd)
          != EXTERNAL_NLIST_SIZE)
        goto error_return;
 
-      /* NB: `KEEPIT' currently overlays `flags', so set this only
+      /* NB: `KEEPIT' currently overlays `udata.p', so set this only
         here, at the end.  */
       g->KEEPIT = count;
     }
@@ -1966,7 +1975,7 @@ NAME(aout,swap_std_reloc_out) (abfd, g, natptr)
       {
        /* Fill in symbol */
        r_extern = 1;
-       r_index =  stoi((*(g->sym_ptr_ptr))->KEEPIT);
+       r_index = (*(g->sym_ptr_ptr))->KEEPIT;
 
       }
     }
@@ -1978,7 +1987,7 @@ NAME(aout,swap_std_reloc_out) (abfd, g, natptr)
     }
 
   /* now the fun stuff */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
       natptr->r_index[0] = r_index >> 16;
       natptr->r_index[1] = r_index >> 8;
       natptr->r_index[2] = r_index;
@@ -2024,7 +2033,9 @@ NAME(aout,swap_ext_reloc_out) (abfd, g, natptr)
 
   r_type = (unsigned int) g->howto->type;
 
-  r_addend = g->addend + (*(g->sym_ptr_ptr))->section->output_section->vma;
+  r_addend = g->addend;
+  if ((sym->flags & BSF_SECTION_SYM) != 0)
+    r_addend += (*(g->sym_ptr_ptr))->section->output_section->vma;
 
   /* If this relocation is relative to a symbol then set the
      r_index to the symbols index, and the r_extern bit.
@@ -2033,32 +2044,29 @@ NAME(aout,swap_ext_reloc_out) (abfd, g, natptr)
      from the abs section, or as a symbol which has an abs value.
      check for that here.  */
 
-  if (bfd_is_com_section (output_section)
-      || bfd_is_abs_section (output_section)
-      || bfd_is_und_section (output_section))
-  {
-    if (bfd_abs_section_ptr->symbol == sym)
+  if (bfd_is_abs_section (bfd_get_section (sym)))
     {
-      /* Whoops, looked like an abs symbol, but is really an offset
-        from the abs section */
-      r_index = 0;
       r_extern = 0;
-     }
-    else
+      r_index = 0;
+    }
+  else if ((sym->flags & BSF_SECTION_SYM) == 0)
     {
-      r_extern = 1;
-      r_index =  stoi((*(g->sym_ptr_ptr))->KEEPIT);
+      if (bfd_is_und_section (bfd_get_section (sym))
+         || (sym->flags & BSF_GLOBAL) != 0)
+       r_extern = 1;
+      else
+       r_extern = 0;
+      r_index = (*(g->sym_ptr_ptr))->KEEPIT;
     }
-  }
   else
-  {
-    /* Just an ordinary section */
-    r_extern = 0;
-    r_index  = output_section->target_index;
-  }
+    {
+      /* Just an ordinary section */
+      r_extern = 0;
+      r_index = output_section->target_index;
+    }
 
   /* now the fun stuff */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     natptr->r_index[0] = r_index >> 16;
     natptr->r_index[1] = r_index >> 8;
     natptr->r_index[2] = r_index;
@@ -2127,7 +2135,7 @@ NAME(aout,swap_ext_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
      asymbol **symbols;
      bfd_size_type symcount;
 {
-  int r_index;
+  unsigned int r_index;
   int r_extern;
   unsigned int r_type;
   struct aoutdata *su = &(abfd->tdata.aout_data->a);
@@ -2135,7 +2143,7 @@ NAME(aout,swap_ext_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
   cache_ptr->address = (GET_SWORD (abfd, bytes->r_address));
 
   /* now the fun stuff */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     r_index =  (bytes->r_index[0] << 16)
             | (bytes->r_index[1] << 8)
             |  bytes->r_index[2];
@@ -2180,18 +2188,18 @@ NAME(aout,swap_std_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
      asymbol **symbols;
      bfd_size_type symcount;
 {
-  int r_index;
+  unsigned int r_index;
   int r_extern;
   unsigned int r_length;
   int r_pcrel;
   int r_baserel, r_jmptable, r_relative;
   struct aoutdata  *su = &(abfd->tdata.aout_data->a);
-  int howto_idx;
+  unsigned int howto_idx;
 
   cache_ptr->address = bfd_h_get_32 (abfd, bytes->r_address);
 
   /* now the fun stuff */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     r_index =  (bytes->r_index[0] << 16)
       | (bytes->r_index[1] << 8)
        |  bytes->r_index[2];
@@ -2219,7 +2227,7 @@ NAME(aout,swap_std_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
              + 16 * r_jmptable + 32 * r_relative;
   BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
   cache_ptr->howto =  howto_table_std + howto_idx;
-  BFD_ASSERT (cache_ptr->howto->type != -1);
+  BFD_ASSERT (cache_ptr->howto->type != (unsigned int) -1);
 
   /* Base relative relocs are always against the symbol table,
      regardless of the setting of r_extern.  r_extern just reflects
@@ -2279,19 +2287,15 @@ NAME(aout,slurp_reloc_table) (abfd, asect, symbols)
 
   count = reloc_size / each_size;
 
-  reloc_cache = (arelent *) malloc ((size_t) (count * sizeof (arelent)));
+  reloc_cache = (arelent *) bfd_malloc ((size_t) (count * sizeof (arelent)));
   if (reloc_cache == NULL && count != 0)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return false;
-    }
+    return false;
   memset (reloc_cache, 0, count * sizeof (arelent));
 
-  relocs = malloc (reloc_size);
+  relocs = bfd_malloc ((size_t) reloc_size);
   if (relocs == NULL && reloc_size != 0)
     {
       free (reloc_cache);
-      bfd_set_error (bfd_error_no_memory);
       return false;
     }
 
@@ -2349,10 +2353,8 @@ NAME(aout,squirt_out_relocs) (abfd, section)
   each_size = obj_reloc_entry_size (abfd);
   natsize = each_size * count;
   native = (unsigned char *) bfd_zalloc (abfd, natsize);
-  if (!native) {
-    bfd_set_error (bfd_error_no_memory);
+  if (!native)
     return false;
-  }
 
   generic = section->orelocation;
 
@@ -2494,6 +2496,7 @@ NAME(aout,get_symbol_info) (ignore_abfd, symbol, ret)
          stab_name = buf;
        }
       ret->type = '-';
+      ret->stab_type = type_code;
       ret->stab_other = (unsigned)(aout_symbol(symbol)->other & 0xff);
       ret->stab_desc = (unsigned)(aout_symbol(symbol)->desc & 0xffff);
       ret->stab_name = stab_name;
@@ -2539,6 +2542,78 @@ NAME(aout,print_symbol) (ignore_abfd, afile, symbol, how)
   }
 }
 
+/* If we don't have to allocate more than 1MB to hold the generic
+   symbols, we use the generic minisymbol methord: it's faster, since
+   it only translates the symbols once, not multiple times.  */
+#define MINISYM_THRESHOLD (1000000 / sizeof (asymbol))
+
+/* Read minisymbols.  For minisymbols, we use the unmodified a.out
+   symbols.  The minisymbol_to_symbol function translates these into
+   BFD asymbol structures.  */
+
+long
+NAME(aout,read_minisymbols) (abfd, dynamic, minisymsp, sizep)
+     bfd *abfd;
+     boolean dynamic;
+     PTR *minisymsp;
+     unsigned int *sizep;
+{
+  if (dynamic)
+    {
+      /* We could handle the dynamic symbols here as well, but it's
+         easier to hand them off.  */
+      return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
+    }
+
+  if (! aout_get_external_symbols (abfd))
+    return -1;
+
+  if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
+    return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
+
+  *minisymsp = (PTR) obj_aout_external_syms (abfd);
+
+  /* By passing the external symbols back from this routine, we are
+     giving up control over the memory block.  Clear
+     obj_aout_external_syms, so that we do not try to free it
+     ourselves.  */
+  obj_aout_external_syms (abfd) = NULL;
+
+  *sizep = EXTERNAL_NLIST_SIZE;
+  return obj_aout_external_sym_count (abfd);
+}
+
+/* Convert a minisymbol to a BFD asymbol.  A minisymbol is just an
+   unmodified a.out symbol.  The SYM argument is a structure returned
+   by bfd_make_empty_symbol, which we fill in here.  */
+
+asymbol *
+NAME(aout,minisymbol_to_symbol) (abfd, dynamic, minisym, sym)
+     bfd *abfd;
+     boolean dynamic;
+     const PTR minisym;
+     asymbol *sym;
+{
+  if (dynamic
+      || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
+    return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym);
+
+  memset (sym, 0, sizeof (aout_symbol_type));
+
+  /* We call translate_symbol_table to translate a single symbol.  */
+  if (! (NAME(aout,translate_symbol_table)
+        (abfd,
+         (aout_symbol_type *) sym,
+         (struct external_nlist *) minisym,
+         (bfd_size_type) 1,
+         obj_aout_external_strings (abfd),
+         obj_aout_external_string_size (abfd),
+         false)))
+    return NULL;
+
+  return sym;
+}
+
 /*
  provided a BFD, a section and an offset into the section, calculate
  and return the name of the source file and the line nearest to the
@@ -2558,15 +2633,16 @@ NAME(aout,find_nearest_line)
 {
   /* Run down the file looking for the filename, function and linenumber */
   asymbol **p;
-  static  char buffer[100];
-  static  char filename_buffer[200];
   CONST char *directory_name = NULL;
   CONST char *main_file_name = NULL;
   CONST char *current_file_name = NULL;
   CONST char *line_file_name = NULL; /* Value of current_file_name at line number. */
-  bfd_vma high_line_vma = ~0;
+  bfd_vma low_line_vma = 0;
   bfd_vma low_func_vma = 0;
   asymbol *func = 0;
+  size_t filelen, funclen;
+  char *buf;
+
   *filename_ptr = abfd->filename;
   *functionname_ptr = 0;
   *line_ptr = 0;
@@ -2599,13 +2675,15 @@ NAME(aout,find_nearest_line)
 
       case N_DSLINE:
       case N_BSLINE:
-       /* We'll keep this if it resolves nearer than the one we have already */
-       if (q->symbol.value >= offset &&
-           q->symbol.value < high_line_vma) {
-         *line_ptr = q->desc;
-         high_line_vma = q->symbol.value;
-         line_file_name = current_file_name;
-       }
+       /* We'll keep this if it resolves nearer than the one we have
+           already.  */
+       if (q->symbol.value >= low_line_vma
+           && q->symbol.value <= offset)
+         {
+           *line_ptr = q->desc;
+           low_line_vma = q->symbol.value;
+           line_file_name = current_file_name;
+         }
        break;
       case N_FUN:
        {
@@ -2615,29 +2693,8 @@ NAME(aout,find_nearest_line)
            low_func_vma = q->symbol.value;
            func = (asymbol *)q;
          }
-         if (*line_ptr && func) {
-           CONST char *function = func->name;
-           char *p;
-
-           /* The caller expects a symbol name.  We actually have a
-              function name, without the leading underscore.  Put the
-              underscore back in, so that the caller gets a symbol
-              name.  */
-           if (bfd_get_symbol_leading_char (abfd) == '\0')
-             strncpy (buffer, function, sizeof (buffer) - 1);
-           else
-             {
-               buffer[0] = bfd_get_symbol_leading_char (abfd);
-               strncpy (buffer + 1, function, sizeof (buffer) - 2);
-             }
-           buffer[sizeof(buffer)-1] = 0;
-           /* Have to remove : stuff */
-           p = strchr(buffer,':');
-           if (p != NULL) { *p = '\0'; }
-           *functionname_ptr = buffer;
+         else if (q->symbol.value > offset)
            goto done;
-
-         }
        }
        break;
       }
@@ -2645,19 +2702,67 @@ NAME(aout,find_nearest_line)
   }
 
  done:
-  if (*line_ptr)
+  if (*line_ptr != 0)
     main_file_name = line_file_name;
-  if (main_file_name) {
+
+  if (main_file_name == NULL
+      || main_file_name[0] == '/'
+      || directory_name == NULL)
+    filelen = 0;
+  else
+    filelen = strlen (directory_name) + strlen (main_file_name);
+  if (func == NULL)
+    funclen = 0;
+  else
+    funclen = strlen (bfd_asymbol_name (func));
+
+  if (adata (abfd).line_buf != NULL)
+    free (adata (abfd).line_buf);
+  if (filelen + funclen == 0)
+    adata (abfd).line_buf = buf = NULL;
+  else
+    {
+      buf = (char *) bfd_malloc (filelen + funclen + 2);
+      adata (abfd).line_buf = buf;
+      if (buf == NULL)
+       return false;
+    }
+
+  if (main_file_name != NULL)
+    {
       if (main_file_name[0] == '/' || directory_name == NULL)
-         *filename_ptr = main_file_name;
-      else {
-         sprintf(filename_buffer, "%.140s%.50s",
-                 directory_name, main_file_name);
-         *filename_ptr = filename_buffer;
-      }
-  }
-  return true;
+       *filename_ptr = main_file_name;
+      else
+       {
+         sprintf (buf, "%s%s", directory_name, main_file_name);
+         *filename_ptr = buf;
+         buf += filelen + 1;
+       }
+    }
 
+  if (func)
+    {
+      const char *function = func->name;
+      char *p;
+
+      /* The caller expects a symbol name.  We actually have a
+        function name, without the leading underscore.  Put the
+        underscore back in, so that the caller gets a symbol name.  */
+      if (bfd_get_symbol_leading_char (abfd) == '\0')
+       strcpy (buf, function);
+      else
+       {
+         buf[0] = bfd_get_symbol_leading_char (abfd);
+         strcpy (buf + 1, function);
+       }
+      /* Have to remove : stuff */
+      p = strchr (buf, ':');
+      if (p != NULL)
+       *p = '\0';
+      *functionname_ptr = buf;
+    }
+
+  return true;
 }
 
 /*ARGSUSED*/
@@ -2683,8 +2788,15 @@ NAME(aout,bfd_free_cached_info) (abfd)
 
 #define BFCI_FREE(x) if (x != NULL) { free (x); x = NULL; }
   BFCI_FREE (obj_aout_symbols (abfd));
+#ifdef USE_MMAP
+  obj_aout_external_syms (abfd) = 0;
+  bfd_free_window (&obj_aout_sym_window (abfd));
+  bfd_free_window (&obj_aout_string_window (abfd));
+  obj_aout_external_strings (abfd) = 0;
+#else
   BFCI_FREE (obj_aout_external_syms (abfd));
   BFCI_FREE (obj_aout_external_strings (abfd));
+#endif
   for (o = abfd->sections; o != (asection *) NULL; o = o->next)
     BFCI_FREE (o->relocation);
 #undef BFCI_FREE
@@ -2720,10 +2832,7 @@ NAME(aout,link_hash_newfunc) (entry, table, string)
     ret = ((struct aout_link_hash_entry *)
           bfd_hash_allocate (table, sizeof (struct aout_link_hash_entry)));
   if (ret == (struct aout_link_hash_entry *) NULL)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return (struct bfd_hash_entry *) ret;
-    }
+    return (struct bfd_hash_entry *) ret;
 
   /* Call the allocation method of the superclass.  */
   ret = ((struct aout_link_hash_entry *)
@@ -2761,12 +2870,9 @@ NAME(aout,link_hash_table_create) (abfd)
   struct aout_link_hash_table *ret;
 
   ret = ((struct aout_link_hash_table *)
-        malloc (sizeof (struct aout_link_hash_table)));
-  if (ret == (struct aout_link_hash_table *) NULL)
-      {
-       bfd_set_error (bfd_error_no_memory);
-       return (struct bfd_link_hash_table *) NULL;
-      }
+        bfd_alloc (abfd, sizeof (struct aout_link_hash_table)));
+  if (ret == NULL)
+    return (struct bfd_link_hash_table *) NULL;
   if (! NAME(aout,link_hash_table_init) (ret, abfd,
                                         NAME(aout,link_hash_newfunc)))
     {
@@ -2784,26 +2890,11 @@ NAME(aout,link_add_symbols) (abfd, info)
      bfd *abfd;
      struct bfd_link_info *info;
 {
-  bfd *first;
-
   switch (bfd_get_format (abfd))
     {
     case bfd_object:
       return aout_link_add_object_symbols (abfd, info);
     case bfd_archive:
-      first = bfd_openr_next_archived_file (abfd, (bfd *) NULL);
-      if (first == NULL)
-       return false;
-      if (! bfd_check_format (first, bfd_object))
-       return false;
-      if (bfd_get_flavour (first) != bfd_target_aout_flavour)
-       {
-         /* On Linux, we may have an ELF archive which got recognized
-             as an a.out archive.  Therefore, we treat all archives as
-             though they were actually of the flavour of their first
-             element.  */
-         return (*first->xvec->_bfd_link_add_symbols) (abfd, info);
-       }
       return _bfd_generic_link_add_archive_symbols
        (abfd, info, aout_link_check_archive_element);
     default:
@@ -2871,12 +2962,20 @@ aout_link_free_symbols (abfd)
 {
   if (obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
     {
+#ifdef USE_MMAP
+      bfd_free_window (&obj_aout_sym_window (abfd));
+#else
       free ((PTR) obj_aout_external_syms (abfd));
+#endif
       obj_aout_external_syms (abfd) = (struct external_nlist *) NULL;
     }
   if (obj_aout_external_strings (abfd) != (char *) NULL)
     {
+#ifdef USE_MMAP
+      bfd_free_window (&obj_aout_string_window (abfd));
+#else
       free ((PTR) obj_aout_external_strings (abfd));
+#endif
       obj_aout_external_strings (abfd) = (char *) NULL;
     }
   return true;
@@ -3064,6 +3163,7 @@ aout_link_add_symbols (abfd, info)
                                     bfd_vma, const char *, boolean,
                                     boolean,
                                     struct bfd_link_hash_entry **));
+  struct external_nlist *syms;
   bfd_size_type sym_count;
   char *strings;
   boolean copy;
@@ -3071,6 +3171,7 @@ aout_link_add_symbols (abfd, info)
   register struct external_nlist *p;
   struct external_nlist *pend;
 
+  syms = obj_aout_external_syms (abfd);
   sym_count = obj_aout_external_sym_count (abfd);
   strings = obj_aout_external_strings (abfd);
   if (info->keep_memory)
@@ -3078,6 +3179,14 @@ aout_link_add_symbols (abfd, info)
   else
     copy = true;
 
+  if ((abfd->flags & DYNAMIC) != 0
+      && aout_backend_info (abfd)->add_dynamic_symbols != NULL)
+    {
+      if (! ((*aout_backend_info (abfd)->add_dynamic_symbols)
+            (abfd, info, &syms, &sym_count, &strings)))
+       return false;
+    }
+
   /* We keep a list of the linker hash table entries that correspond
      to particular symbols.  We could just look them up in the hash
      table, but keeping the list is more efficient.  Perhaps this
@@ -3087,24 +3196,14 @@ aout_link_add_symbols (abfd, info)
                         ((size_t) sym_count
                          * sizeof (struct aout_link_hash_entry *))));
   if (sym_hash == NULL && sym_count != 0)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return false;
-    }
+    return false;
   obj_aout_sym_hashes (abfd) = sym_hash;
 
-  if ((abfd->flags & DYNAMIC) != 0
-      && aout_backend_info (abfd)->add_dynamic_symbols != NULL)
-    {
-      if (! (*aout_backend_info (abfd)->add_dynamic_symbols) (abfd, info))
-       return false;
-    }
-
   add_one_symbol = aout_backend_info (abfd)->add_one_symbol;
   if (add_one_symbol == NULL)
     add_one_symbol = _bfd_generic_link_add_one_symbol;
 
-  p = obj_aout_external_syms (abfd);
+  p = syms;
   pend = p + sym_count;
   for (; p < pend; p++, sym_hash++)
     {
@@ -3273,6 +3372,37 @@ aout_link_add_symbols (abfd, info)
 
   return true;
 }
+\f
+/* A hash table used for header files with N_BINCL entries.  */
+
+struct aout_link_includes_table
+{
+  struct bfd_hash_table root;
+};
+
+/* A linked list of totals that we have found for a particular header
+   file.  */
+
+struct aout_link_includes_totals
+{
+  struct aout_link_includes_totals *next;
+  bfd_vma total;
+};
+
+/* An entry in the header file hash table.  */
+
+struct aout_link_includes_entry
+{
+  struct bfd_hash_entry root;
+  /* List of totals we have found for this file.  */
+  struct aout_link_includes_totals *totals;
+};
+
+/* Look up an entry in an the header file hash table.  */
+
+#define aout_link_includes_lookup(table, string, create, copy) \
+  ((struct aout_link_includes_entry *) \
+   bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
 
 /* During the final link step we need to pass around a bunch of
    information, so we do it in an instance of this structure.  */
@@ -3289,6 +3419,8 @@ struct aout_final_link_info
   file_ptr symoff;
   /* String table.  */
   struct bfd_strtab_hash *strtab;
+  /* Header file hash table.  */
+  struct aout_link_includes_table includes;
   /* A buffer large enough to hold the contents of any section.  */
   bfd_byte *contents;
   /* A buffer large enough to hold the relocs of any section.  */
@@ -3299,6 +3431,8 @@ struct aout_final_link_info
   struct external_nlist *output_syms;
 };
 
+static struct bfd_hash_entry *aout_link_includes_newfunc
+  PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
 static boolean aout_link_input_bfd
   PARAMS ((struct aout_final_link_info *, bfd *input_bfd));
 static boolean aout_link_write_symbols
@@ -3323,6 +3457,38 @@ static boolean aout_link_reloc_link_order
   PARAMS ((struct aout_final_link_info *, asection *,
           struct bfd_link_order *));
 
+/* The function to create a new entry in the header file hash table.  */
+
+static struct bfd_hash_entry *
+aout_link_includes_newfunc (entry, table, string)
+     struct bfd_hash_entry *entry;
+     struct bfd_hash_table *table;
+     const char *string;
+{
+  struct aout_link_includes_entry *ret =
+    (struct aout_link_includes_entry *) entry;
+
+  /* Allocate the structure if it has not already been allocated by a
+     subclass.  */
+  if (ret == (struct aout_link_includes_entry *) NULL)
+    ret = ((struct aout_link_includes_entry *)
+          bfd_hash_allocate (table,
+                             sizeof (struct aout_link_includes_entry)));
+  if (ret == (struct aout_link_includes_entry *) NULL)
+    return (struct bfd_hash_entry *) ret;
+
+  /* Call the allocation method of the superclass.  */
+  ret = ((struct aout_link_includes_entry *)
+        bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
+  if (ret)
+    {
+      /* Set local fields.  */
+      ret->totals = NULL;
+    }
+
+  return (struct bfd_hash_entry *) ret;
+}
+
 /* Do the final link step.  This is called on the output BFD.  The
    INFO structure should point to a list of BFDs linked through the
    link_next field which can be used to find each BFD which takes part
@@ -3337,6 +3503,7 @@ NAME(aout,final_link) (abfd, info, callback)
      void (*callback) PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
 {
   struct aout_final_link_info aout_info;
+  boolean includes_hash_initialized = false;
   register bfd *sub;
   bfd_size_type trsize, drsize;
   size_t max_contents_size;
@@ -3348,10 +3515,21 @@ NAME(aout,final_link) (abfd, info, callback)
   asection *o;
   boolean have_link_order_relocs;
 
+  if (info->shared)
+    abfd->flags |= DYNAMIC;
+
   aout_info.info = info;
   aout_info.output_bfd = abfd;
   aout_info.contents = NULL;
   aout_info.relocs = NULL;
+  aout_info.symbol_map = NULL;
+  aout_info.output_syms = NULL;
+
+  if (! bfd_hash_table_init_n (&aout_info.includes.root,
+                              aout_link_includes_newfunc,
+                              251))
+    goto error_return;
+  includes_hash_initialized = true;
 
   /* Figure out the largest section size.  Also, if generating
      relocateable output, count the relocs.  */
@@ -3377,7 +3555,12 @@ NAME(aout,final_link) (abfd, info, callback)
                 and call get_reloc_upper_bound and canonicalize_reloc to
                 work out the number of relocs needed, and then multiply
                 by the reloc size.  */
-             abort ();
+             (*_bfd_error_handler)
+               ("%s: relocateable link from %s to %s not supported",
+                bfd_get_filename (abfd),
+                sub->xvec->name, abfd->xvec->name);
+             bfd_set_error (bfd_error_invalid_operation);
+             goto error_return;
            }
        }
 
@@ -3449,20 +3632,30 @@ NAME(aout,final_link) (abfd, info, callback)
     goto error_return;
 
   /* Allocate buffers to hold section contents and relocs.  */
-  aout_info.contents = (bfd_byte *) malloc (max_contents_size);
-  aout_info.relocs = (PTR) malloc (max_relocs_size);
-  aout_info.symbol_map = (int *) malloc (max_sym_count * sizeof (int *));
+  aout_info.contents = (bfd_byte *) bfd_malloc (max_contents_size);
+  aout_info.relocs = (PTR) bfd_malloc (max_relocs_size);
+  aout_info.symbol_map = (int *) bfd_malloc (max_sym_count * sizeof (int *));
   aout_info.output_syms = ((struct external_nlist *)
-                          malloc ((max_sym_count + 1)
-                                  * sizeof (struct external_nlist)));
+                          bfd_malloc ((max_sym_count + 1)
+                                      * sizeof (struct external_nlist)));
   if ((aout_info.contents == NULL && max_contents_size != 0)
       || (aout_info.relocs == NULL && max_relocs_size != 0)
       || (aout_info.symbol_map == NULL && max_sym_count != 0)
       || aout_info.output_syms == NULL)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      goto error_return;
-    }
+    goto error_return;
+
+  /* If we have a symbol named __DYNAMIC, force it out now.  This is
+     required by SunOS.  Doing this here rather than in sunos.c is a
+     hack, but it's easier than exporting everything which would be
+     needed.  */
+  {
+    struct aout_link_hash_entry *h;
+
+    h = aout_link_hash_lookup (aout_hash_table (info), "__DYNAMIC",
+                              false, false, false);
+    if (h != NULL)
+      aout_link_write_other_symbol (h, &aout_info);
+  }
 
   /* The most time efficient way to do the link would be to read all
      the input object files into memory and then sort out the
@@ -3570,6 +3763,11 @@ NAME(aout,final_link) (abfd, info, callback)
       free (aout_info.output_syms);
       aout_info.output_syms = NULL;
     }
+  if (includes_hash_initialized)
+    {
+      bfd_hash_table_free (&aout_info.includes.root);
+      includes_hash_initialized = false;
+    }
 
   /* Finish up any dynamic linking we may be doing.  */
   if (aout_backend_info (abfd)->finish_dynamic_link != NULL)
@@ -3601,6 +3799,8 @@ NAME(aout,final_link) (abfd, info, callback)
     free (aout_info.symbol_map);
   if (aout_info.output_syms != NULL)
     free (aout_info.output_syms);
+  if (includes_hash_initialized)
+    bfd_hash_table_free (&aout_info.includes.root);
   return false;
 }
 
@@ -3719,6 +3919,7 @@ aout_link_write_symbols (finfo, input_bfd)
   sym_end = sym + sym_count;
   sym_hash = obj_aout_sym_hashes (input_bfd);
   symbol_map = finfo->symbol_map;
+  memset (symbol_map, 0, sym_count * sizeof *symbol_map);
   for (; sym < sym_end; sym++, sym_hash++, symbol_map++)
     {
       const char *name;
@@ -3729,6 +3930,16 @@ aout_link_write_symbols (finfo, input_bfd)
       bfd_vma val = 0;
       boolean copy;
 
+      /* We set *symbol_map to 0 above for all symbols.  If it has
+         already been set to -1 for this symbol, it means that we are
+         discarding it because it appears in a duplicate header file.
+         See the N_BINCL code below.  */
+      if (*symbol_map == -1)
+       continue;
+
+      /* Initialize *symbol_map to -1, which means that the symbol was
+         not copied into the output file.  We will change it later if
+         we do copy the symbol over.  */
       *symbol_map = -1;
 
       type = bfd_h_get_8 (input_bfd, sym->e_type);
@@ -3978,6 +4189,112 @@ aout_link_write_symbols (finfo, input_bfd)
                  continue;
                }
            }
+
+         /* An N_BINCL symbol indicates the start of the stabs
+            entries for a header file.  We need to scan ahead to the
+            next N_EINCL symbol, ignoring nesting, adding up all the
+            characters in the symbol names, not including the file
+            numbers in types (the first number after an open
+            parenthesis).  */
+         if (type == N_BINCL)
+           {
+             struct external_nlist *incl_sym;
+             int nest;
+             struct aout_link_includes_entry *incl_entry;
+             struct aout_link_includes_totals *t;
+
+             val = 0;
+             nest = 0;
+             for (incl_sym = sym + 1; incl_sym < sym_end; incl_sym++)
+               {
+                 int incl_type;
+
+                 incl_type = bfd_h_get_8 (input_bfd, incl_sym->e_type);
+                 if (incl_type == N_EINCL)
+                   {
+                     if (nest == 0)
+                       break;
+                     --nest;
+                   }
+                 else if (incl_type == N_BINCL)
+                   ++nest;
+                 else if (nest == 0)
+                   {
+                     const char *s;
+
+                     s = strings + GET_WORD (input_bfd, incl_sym->e_strx);
+                     for (; *s != '\0'; s++)
+                       {
+                         val += *s;
+                         if (*s == '(')
+                           {
+                             /* Skip the file number.  */
+                             ++s;
+                             while (isdigit ((unsigned char) *s))
+                               ++s;
+                             --s;
+                           }
+                       }
+                   }
+               }
+
+             /* If we have already included a header file with the
+                 same value, then replace this one with an N_EXCL
+                 symbol.  */
+             copy = ! finfo->info->keep_memory;
+             incl_entry = aout_link_includes_lookup (&finfo->includes,
+                                                     name, true, copy);
+             if (incl_entry == NULL)
+               return false;
+             for (t = incl_entry->totals; t != NULL; t = t->next)
+               if (t->total == val)
+                 break;
+             if (t == NULL)
+               {
+                 /* This is the first time we have seen this header
+                     file with this set of stabs strings.  */
+                 t = ((struct aout_link_includes_totals *)
+                      bfd_hash_allocate (&finfo->includes.root,
+                                         sizeof *t));
+                 if (t == NULL)
+                   return false;
+                 t->total = val;
+                 t->next = incl_entry->totals;
+                 incl_entry->totals = t;
+               }
+             else
+               {
+                 int *incl_map;
+
+                 /* This is a duplicate header file.  We must change
+                     it to be an N_EXCL entry, and mark all the
+                     included symbols to prevent outputting them.  */
+                 type = N_EXCL;
+
+                 nest = 0;
+                 for (incl_sym = sym + 1, incl_map = symbol_map + 1;
+                      incl_sym < sym_end;
+                      incl_sym++, incl_map++)
+                   {
+                     int incl_type;
+
+                     incl_type = bfd_h_get_8 (input_bfd, incl_sym->e_type);
+                     if (incl_type == N_EINCL)
+                       {
+                         if (nest == 0)
+                           {
+                             *incl_map = -1;
+                             break;
+                           }
+                         --nest;
+                       }
+                     else if (incl_type == N_BINCL)
+                       ++nest;
+                     else if (nest == 0)
+                       *incl_map = -1;
+                   }
+               }
+           }
        }
 
       /* Copy this symbol into the list of symbols we are going to
@@ -4267,7 +4584,8 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
   boolean (*check_dynamic_reloc) PARAMS ((struct bfd_link_info *,
                                          bfd *, asection *,
                                          struct aout_link_hash_entry *,
-                                         PTR, boolean *));
+                                         PTR, bfd_byte *, boolean *,
+                                         bfd_vma *));
   bfd *output_bfd;
   boolean relocateable;
   struct external_nlist *syms;
@@ -4282,8 +4600,8 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
   check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
 
   BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE);
-  BFD_ASSERT (input_bfd->xvec->header_byteorder_big_p
-             == output_bfd->xvec->header_byteorder_big_p);
+  BFD_ASSERT (input_bfd->xvec->header_byteorder
+             == output_bfd->xvec->header_byteorder);
 
   relocateable = finfo->info->relocateable;
   syms = obj_aout_external_syms (input_bfd);
@@ -4300,12 +4618,9 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
       int r_index;
       int r_extern;
       int r_pcrel;
-      int r_baserel;
-      int r_jmptable;
-      int r_relative;
-      int r_length;
-      int howto_idx;
+      int r_baserel = 0;
       reloc_howto_type *howto;
+      struct aout_link_hash_entry *h = NULL;
       bfd_vma relocation;
       bfd_reloc_status_type r;
 
@@ -4314,37 +4629,47 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
 #ifdef MY_reloc_howto
       howto = MY_reloc_howto(input_bfd, rel, r_index, r_extern, r_pcrel);
 #else      
-      if (input_bfd->xvec->header_byteorder_big_p)
-       {
-         r_index   =  ((rel->r_index[0] << 16)
-                       | (rel->r_index[1] << 8)
-                       | rel->r_index[2]);
-         r_extern  = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
-         r_pcrel   = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
-         r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
-         r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
-         r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
-         r_length  = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
-                      >> RELOC_STD_BITS_LENGTH_SH_BIG);
-       }
-      else
-       {
-         r_index   = ((rel->r_index[2] << 16)
-                      | (rel->r_index[1] << 8)
-                      | rel->r_index[0]);
-         r_extern  = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
-         r_pcrel   = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
-         r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE));
-         r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE));
-         r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_LITTLE));
-         r_length  = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
-                      >> RELOC_STD_BITS_LENGTH_SH_LITTLE);
-       }
+      {
+       int r_jmptable;
+       int r_relative;
+       int r_length;
+       unsigned int howto_idx;
 
-      howto_idx = r_length + 4 * r_pcrel + 8 * r_baserel
-                 + 16 * r_jmptable + 32 * r_relative;
-      BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
-      howto = howto_table_std + howto_idx;
+       if (bfd_header_big_endian (input_bfd))
+         {
+           r_index   =  ((rel->r_index[0] << 16)
+                         | (rel->r_index[1] << 8)
+                         | rel->r_index[2]);
+           r_extern  = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
+           r_pcrel   = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
+           r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
+           r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
+           r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
+           r_length  = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
+                        >> RELOC_STD_BITS_LENGTH_SH_BIG);
+         }
+       else
+         {
+           r_index   = ((rel->r_index[2] << 16)
+                        | (rel->r_index[1] << 8)
+                        | rel->r_index[0]);
+           r_extern  = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
+           r_pcrel   = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
+           r_baserel = (0 != (rel->r_type[0]
+                              & RELOC_STD_BITS_BASEREL_LITTLE));
+           r_jmptable= (0 != (rel->r_type[0]
+                              & RELOC_STD_BITS_JMPTABLE_LITTLE));
+           r_relative= (0 != (rel->r_type[0]
+                              & RELOC_STD_BITS_RELATIVE_LITTLE));
+           r_length  = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
+                        >> RELOC_STD_BITS_LENGTH_SH_LITTLE);
+         }
+
+       howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel
+                    + 16 * r_jmptable + 32 * r_relative);
+       BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
+       howto = howto_table_std + howto_idx;
+      }
 #endif
 
       if (relocateable)
@@ -4353,8 +4678,6 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
             modify the reloc accordingly.  */
          if (r_extern)
            {
-             struct aout_link_hash_entry *h;
-
              /* If we know the symbol this relocation is against,
                 convert it into a relocation against a section.  This
                 is what the native linker does.  */
@@ -4366,7 +4689,7 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
                  asection *output_section;
 
                  /* Change the r_extern value.  */
-                 if (output_bfd->xvec->header_byteorder_big_p)
+                 if (bfd_header_big_endian (output_bfd))
                    rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_BIG;
                  else
                    rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_LITTLE;
@@ -4431,7 +4754,7 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
                }
 
              /* Write out the new r_index value.  */
-             if (output_bfd->xvec->header_byteorder_big_p)
+             if (bfd_header_big_endian (output_bfd))
                {
                  rel->r_index[0] = r_index >> 16;
                  rel->r_index[1] = r_index >> 8;
@@ -4476,32 +4799,21 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
          if (relocation == 0)
            r = bfd_reloc_ok;
          else
-           r = _bfd_relocate_contents (howto,
+           r = MY_relocate_contents (howto,
                                        input_bfd, relocation,
                                        contents + r_addr);
        }
       else
        {
+         boolean hundef;
+
          /* We are generating an executable, and must do a full
             relocation.  */
+         hundef = false;
          if (r_extern)
            {
-             struct aout_link_hash_entry *h;
-
              h = sym_hashes[r_index];
 
-             if (check_dynamic_reloc != NULL)
-               {
-                 boolean skip;
-
-                 if (! ((*check_dynamic_reloc)
-                        (finfo->info, input_bfd, input_section, h,
-                         (PTR) rel, &skip)))
-                   return false;
-                 if (skip)
-                   continue;
-               }
-
              if (h != (struct aout_link_hash_entry *) NULL
                  && (h->root.type == bfd_link_hash_defined
                      || h->root.type == bfd_link_hash_defweak))
@@ -4515,13 +4827,7 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
                relocation = 0;
              else
                {
-                 const char *name;
-
-                 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
-                 if (! ((*finfo->info->callbacks->undefined_symbol)
-                        (finfo->info, name, input_bfd, input_section,
-                         r_addr)))
-                   return false;
+                 hundef = true;
                  relocation = 0;
                }
            }
@@ -4537,7 +4843,32 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
                relocation += input_section->vma;
            }
 
-         r = _bfd_final_link_relocate (howto,
+         if (check_dynamic_reloc != NULL)
+           {
+             boolean skip;
+
+             if (! ((*check_dynamic_reloc)
+                    (finfo->info, input_bfd, input_section, h,
+                     (PTR) rel, contents, &skip, &relocation)))
+               return false;
+             if (skip)
+               continue;
+           }
+
+         /* Now warn if a global symbol is undefined.  We could not
+             do this earlier, because check_dynamic_reloc might want
+             to skip this reloc.  */
+         if (hundef && ! finfo->info->shared && ! r_baserel)
+           {
+             const char *name;
+
+             name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
+             if (! ((*finfo->info->callbacks->undefined_symbol)
+                    (finfo->info, name, input_bfd, input_section, r_addr)))
+               return false;
+           }
+
+         r = MY_final_link_relocate (howto,
                                        input_bfd, input_section,
                                        contents, r_addr, relocation,
                                        (bfd_vma) 0);
@@ -4592,7 +4923,8 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
   boolean (*check_dynamic_reloc) PARAMS ((struct bfd_link_info *,
                                          bfd *, asection *,
                                          struct aout_link_hash_entry *,
-                                         PTR, boolean *));
+                                         PTR, bfd_byte *, boolean *,
+                                         bfd_vma *));
   bfd *output_bfd;
   boolean relocateable;
   struct external_nlist *syms;
@@ -4607,8 +4939,8 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
   check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
 
   BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_EXT_SIZE);
-  BFD_ASSERT (input_bfd->xvec->header_byteorder_big_p
-             == output_bfd->xvec->header_byteorder_big_p);
+  BFD_ASSERT (input_bfd->xvec->header_byteorder
+             == output_bfd->xvec->header_byteorder);
 
   relocateable = finfo->info->relocateable;
   syms = obj_aout_external_syms (input_bfd);
@@ -4624,13 +4956,15 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
       bfd_vma r_addr;
       int r_index;
       int r_extern;
-      int r_type;
+      unsigned int r_type;
       bfd_vma r_addend;
+      struct aout_link_hash_entry *h = NULL;
+      asection *r_section = NULL;
       bfd_vma relocation;
 
       r_addr = GET_SWORD (input_bfd, rel->r_address);
 
-      if (input_bfd->xvec->header_byteorder_big_p)
+      if (bfd_header_big_endian (input_bfd))
        {
          r_index  = ((rel->r_index[0] << 16)
                      | (rel->r_index[1] << 8)
@@ -4651,8 +4985,7 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
 
       r_addend = GET_SWORD (input_bfd, rel->r_addend);
 
-      BFD_ASSERT (r_type >= 0
-                 && r_type < TABLE_SIZE (howto_table_ext));
+      BFD_ASSERT (r_type < TABLE_SIZE (howto_table_ext));
 
       if (relocateable)
        {
@@ -4660,8 +4993,6 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
             modify the reloc accordingly.  */
          if (r_extern)
            {
-             struct aout_link_hash_entry *h;
-
              /* If we know the symbol this relocation is against,
                 convert it into a relocation against a section.  This
                 is what the native linker does.  */
@@ -4673,7 +5004,7 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
                  asection *output_section;
 
                  /* Change the r_extern value.  */
-                 if (output_bfd->xvec->header_byteorder_big_p)
+                 if (bfd_header_big_endian (output_bfd))
                    rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_BIG;
                  else
                    rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_LITTLE;
@@ -4751,7 +5082,7 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
                }
 
              /* Write out the new r_index value.  */
-             if (output_bfd->xvec->header_byteorder_big_p)
+             if (bfd_header_big_endian (output_bfd))
                {
                  rel->r_index[0] = r_index >> 16;
                  rel->r_index[1] = r_index >> 8;
@@ -4766,14 +5097,12 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
            }
          else
            {
-             asection *section;
-
              /* This is a relocation against a section.  We must
                 adjust by the amount that the section moved.  */
-             section = aout_reloc_index_to_section (input_bfd, r_index);
-             relocation = (section->output_section->vma
-                           + section->output_offset
-                           - section->vma);
+             r_section = aout_reloc_index_to_section (input_bfd, r_index);
+             relocation = (r_section->output_section->vma
+                           + r_section->output_offset
+                           - r_section->vma);
 
              /* If this is a PC relative reloc, then the addend is
                 the difference in VMA between the destination and the
@@ -4800,28 +5129,16 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
        }
       else
        {
+         boolean hundef;
          bfd_reloc_status_type r;
 
          /* We are generating an executable, and must do a full
             relocation.  */
+         hundef = false;
          if (r_extern)
            {
-             struct aout_link_hash_entry *h;
-
              h = sym_hashes[r_index];
 
-             if (check_dynamic_reloc != NULL)
-               {
-                 boolean skip;
-
-                 if (! ((*check_dynamic_reloc)
-                        (finfo->info, input_bfd, input_section, h,
-                         (PTR) rel, &skip)))
-                   return false;
-                 if (skip)
-                   continue;
-               }
-
              if (h != (struct aout_link_hash_entry *) NULL
                  && (h->root.type == bfd_link_hash_defined
                      || h->root.type == bfd_link_hash_defweak))
@@ -4835,21 +5152,43 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
                relocation = 0;
              else
                {
-                 const char *name;
-
-                 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
-                 if (! ((*finfo->info->callbacks->undefined_symbol)
-                        (finfo->info, name, input_bfd, input_section,
-                         r_addr)))
-                   return false;
+                 hundef = true;
                  relocation = 0;
                }
            }
+         else if (r_type == RELOC_BASE10
+                  || r_type == RELOC_BASE13
+                  || r_type == RELOC_BASE22)
+           {
+             struct external_nlist *sym;
+             int type;
+
+             /* For base relative relocs, r_index is always an index
+                 into the symbol table, even if r_extern is 0.  */
+             sym = syms + r_index;
+             type = bfd_h_get_8 (input_bfd, sym->e_type);
+             if ((type & N_TYPE) == N_TEXT
+                 || type == N_WEAKT)
+               r_section = obj_textsec (input_bfd);
+             else if ((type & N_TYPE) == N_DATA
+                      || type == N_WEAKD)
+               r_section = obj_datasec (input_bfd);
+             else if ((type & N_TYPE) == N_BSS
+                      || type == N_WEAKB)
+               r_section = obj_bsssec (input_bfd);
+             else if ((type & N_TYPE) == N_ABS
+                      || type == N_WEAKA)
+               r_section = bfd_abs_section_ptr;
+             else
+               abort ();
+             relocation = (r_section->output_section->vma
+                           + r_section->output_offset
+                           + (GET_WORD (input_bfd, sym->e_value)
+                              - r_section->vma));
+           }
          else
            {
-             asection *section;
-
-             section = aout_reloc_index_to_section (input_bfd, r_index);
+             r_section = aout_reloc_index_to_section (input_bfd, r_index);
 
              /* If this is a PC relative reloc, then R_ADDEND is the
                 difference between the two vmas, or
@@ -4877,14 +5216,43 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
                 RELOCATION to the change in the destination VMA, or
                   new_dest_sec - old_dest_sec
                 */
-             relocation = (section->output_section->vma
-                           + section->output_offset
-                           - section->vma);
+             relocation = (r_section->output_section->vma
+                           + r_section->output_offset
+                           - r_section->vma);
              if (howto_table_ext[r_type].pc_relative)
                relocation += input_section->vma;
            }
 
-         r = _bfd_final_link_relocate (howto_table_ext + r_type,
+         if (check_dynamic_reloc != NULL)
+           {
+             boolean skip;
+
+             if (! ((*check_dynamic_reloc)
+                    (finfo->info, input_bfd, input_section, h,
+                     (PTR) rel, contents, &skip, &relocation)))
+               return false;
+             if (skip)
+               continue;
+           }
+
+         /* Now warn if a global symbol is undefined.  We could not
+             do this earlier, because check_dynamic_reloc might want
+             to skip this reloc.  */
+         if (hundef
+             && ! finfo->info->shared
+             && r_type != RELOC_BASE10
+             && r_type != RELOC_BASE13
+             && r_type != RELOC_BASE22)
+           {
+             const char *name;
+
+             name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
+             if (! ((*finfo->info->callbacks->undefined_symbol)
+                    (finfo->info, name, input_bfd, input_section, r_addr)))
+               return false;
+           }
+
+         r = MY_final_link_relocate (howto_table_ext + r_type,
                                        input_bfd, input_section,
                                        contents, r_addr, relocation,
                                        r_addend);
@@ -4899,7 +5267,10 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
                  {
                    const char *name;
 
-                   if (r_extern)
+                   if (r_extern
+                       || r_type == RELOC_BASE10
+                       || r_type == RELOC_BASE13
+                       || r_type == RELOC_BASE22)
                      name = strings + GET_WORD (input_bfd,
                                                 syms[r_index].e_strx);
                    else
@@ -5002,48 +5373,51 @@ aout_link_reloc_link_order (finfo, o, p)
 
   if (obj_reloc_entry_size (finfo->output_bfd) == RELOC_STD_SIZE)
     {
-      int r_pcrel;
-      int r_baserel;
-      int r_jmptable;
-      int r_relative;
-      int r_length;
-
 #ifdef MY_put_reloc
-      MY_put_reloc(finfo->output_bfd, r_extern, r_index, p->offset, howto, &srel);
+      MY_put_reloc(finfo->output_bfd, r_extern, r_index, p->offset, howto,
+                  &srel);
 #else
-      r_pcrel = howto->pc_relative;
-      r_baserel = (howto->type & 8) != 0;
-      r_jmptable = (howto->type & 16) != 0;
-      r_relative = (howto->type & 32) != 0;
-      r_length = howto->size;
-
-      PUT_WORD (finfo->output_bfd, p->offset, srel.r_address);
-      if (finfo->output_bfd->xvec->header_byteorder_big_p)
-       {
-         srel.r_index[0] = r_index >> 16;
-         srel.r_index[1] = r_index >> 8;
-         srel.r_index[2] = r_index;
-         srel.r_type[0] =
-           ((r_extern ?     RELOC_STD_BITS_EXTERN_BIG : 0)
-            | (r_pcrel ?    RELOC_STD_BITS_PCREL_BIG : 0)
-            | (r_baserel ?  RELOC_STD_BITS_BASEREL_BIG : 0)
-            | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
-            | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
-            | (r_length <<  RELOC_STD_BITS_LENGTH_SH_BIG));
-       }
-      else
-       {
-         srel.r_index[2] = r_index >> 16;
-         srel.r_index[1] = r_index >> 8;
-         srel.r_index[0] = r_index;
-         srel.r_type[0] =
-           ((r_extern ?     RELOC_STD_BITS_EXTERN_LITTLE : 0)
-            | (r_pcrel ?    RELOC_STD_BITS_PCREL_LITTLE : 0)
-            | (r_baserel ?  RELOC_STD_BITS_BASEREL_LITTLE : 0)
-            | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
-            | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
-            | (r_length <<  RELOC_STD_BITS_LENGTH_SH_LITTLE));
-       }
+      {
+       int r_pcrel;
+       int r_baserel;
+       int r_jmptable;
+       int r_relative;
+       int r_length;
+
+       r_pcrel = howto->pc_relative;
+       r_baserel = (howto->type & 8) != 0;
+       r_jmptable = (howto->type & 16) != 0;
+       r_relative = (howto->type & 32) != 0;
+       r_length = howto->size;
+
+       PUT_WORD (finfo->output_bfd, p->offset, srel.r_address);
+       if (bfd_header_big_endian (finfo->output_bfd))
+         {
+           srel.r_index[0] = r_index >> 16;
+           srel.r_index[1] = r_index >> 8;
+           srel.r_index[2] = r_index;
+           srel.r_type[0] =
+             ((r_extern ?     RELOC_STD_BITS_EXTERN_BIG : 0)
+              | (r_pcrel ?    RELOC_STD_BITS_PCREL_BIG : 0)
+              | (r_baserel ?  RELOC_STD_BITS_BASEREL_BIG : 0)
+              | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
+              | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
+              | (r_length <<  RELOC_STD_BITS_LENGTH_SH_BIG));
+         }
+       else
+         {
+           srel.r_index[2] = r_index >> 16;
+           srel.r_index[1] = r_index >> 8;
+           srel.r_index[0] = r_index;
+           srel.r_type[0] =
+             ((r_extern ?     RELOC_STD_BITS_EXTERN_LITTLE : 0)
+              | (r_pcrel ?    RELOC_STD_BITS_PCREL_LITTLE : 0)
+              | (r_baserel ?  RELOC_STD_BITS_BASEREL_LITTLE : 0)
+              | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
+              | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
+              | (r_length <<  RELOC_STD_BITS_LENGTH_SH_LITTLE));
+         }
+      }
 #endif
       rel_ptr = (PTR) &srel;
 
@@ -5062,11 +5436,8 @@ aout_link_reloc_link_order (finfo, o, p)
          size = bfd_get_reloc_size (howto);
          buf = (bfd_byte *) bfd_zmalloc (size);
          if (buf == (bfd_byte *) NULL)
-           {
-             bfd_set_error (bfd_error_no_memory);
-             return false;
-           }
-         r = _bfd_relocate_contents (howto, finfo->output_bfd,
+           return false;
+         r = MY_relocate_contents (howto, finfo->output_bfd,
                                      pr->addend, buf);
          switch (r)
            {
@@ -5103,7 +5474,7 @@ aout_link_reloc_link_order (finfo, o, p)
     {
       PUT_WORD (finfo->output_bfd, p->offset, erel.r_address);
 
-      if (finfo->output_bfd->xvec->header_byteorder_big_p)
+      if (bfd_header_big_endian (finfo->output_bfd))
        {
          erel.r_index[0] = r_index >> 16;
          erel.r_index[1] = r_index >> 8;
This page took 0.047075 seconds and 4 git commands to generate.