This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Support for sh-symbian-elf target


Hi Guys,

  I am applying the attached patch to add support for a Symbian OS
  targeted SH port (sh-symbian-elf) to binutils.  This port was
  developed by Red Hat under contract to Symbian and Renesas.

  The patch does make a small addition to the generic code.  It adds a
  new target function to the elf_backend_data structure.  This
  function, called "check_directives" is used to allow target specific
  processing of directives contained within input files.
  
  I have tested the changes with the intended target string and with 
  --enable-targets=all so there should be no problems introduced by
  its addition to the codebase.

Cheers
  Nick

bfd/ChangeLog
2004-07-06  Nick Clifton  <nickc@redhat.com>

	* config.bfd: Add sh-symbian-elf target.
	* configure.in: Add bfd_elf32_shl_symbian_vec.
	* configure: Regenerate.
	* elf-bfd.h (struct elf_backend_data): Add new field
	'check_directives'.
        * elflink.c (elf_link_add_object_symbols): Invoke the
	check_directives function, if defined.
        * elfxx-target.h: Provide a default, NULL definition for
	check_directives.
        * targets.c: Add bfd_elf32_shl_symbian_vec.
        * elf32-sh.c (sh_elf_swap_insns): Protect against unnecessary
	definition.
        (elf32_shlin_grok_prstatus, elf32_shlib_grok_psinfo,
	* sh_elf_get_flags_from_mach, sh_elf_find_flags): Likewise.
        (TARGET_BIG_SYM, TARGET_LITTLE_SYM): Only define if they have
	not already been defined.
        * elf32-sh64.c: Use SH_TARGET_ALREADY_DEFINED.
        * sh-symbian.c: New file.  Provide functions to support the
	* sh-symbian-elf target.
	* Makefile.am: Add elf32-sh-symbian.c
	* Makefile.in: Regenerate.
        
ld/ChangeLog
2004-07-06  Nick Clifton  <nickc@redhat.com>

	* Makefile.am: Add eshlsymbian.c.
	* Makefile.in: Regenerate.
	* configure.tgt: Add sh*-symbian-elf target.
	* emulparams/shlsymbian.sh: New file.  Configure the
	sh-symbian-elf linker scripts.
	* scripttemp/elf32sh-symbian.sc: New file.  Linker script
	template for the sh-symbian-elf target.

gas/ChangeLog
2004-07-06  Nick Clifton  <nickc@redhat.com>

	* config.in: Undefine TARGET_SYMBIAN by default.
        * configure.in:
        * configure: Regenerate. Add sh-symbian-elf target.  If
        selected define TARGET_SYMBIAN.
        * config/tc-sh.h (TARGET_FORMAT): Select a Symbian target
        format if TARGET_SYMBIAN has been defined.
                
Index: ld/Makefile.am
===================================================================
RCS file: /cvs/src/src/ld/Makefile.am,v
retrieving revision 1.154
diff -c -3 -p -r1.154 Makefile.am
*** ld/Makefile.am	17 May 2004 19:50:16 -0000	1.154
--- ld/Makefile.am	6 Jul 2004 16:08:21 -0000
*************** ALL_EMULATIONS = \
*** 334,339 ****
--- 334,340 ----
  	eshlelf_nto.o \
  	eshl.o \
  	eshlelf.o \
+ 	eshlsymbian.o \
  	eshpe.o \
  	esparcaout.o \
  	esparclinux.o \
*************** eshlelf.c: $(srcdir)/emulparams/shlelf.s
*** 1340,1345 ****
--- 1341,1350 ----
    $(srcdir)/emulparams/shelf.sh \
    $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
  	${GENSCRIPTS} shlelf "$(tdir_shlelf)"
+ eshlsymbian.c: $(srcdir)/emulparams/shlsymbian.sh \
+   $(srcdir)/emulparams/shelf.sh \
+   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf32sh-symbian.sc ${GEN_DEPENDS}
+ 	${GENSCRIPTS} shlsymbian "$(tdir_shlelf)"
  eshlelf32.c: $(srcdir)/emulparams/shlelf32.sh \
    $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h $(srcdir)/emulparams/shelf32.sh \
    $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
Index: ld/configure.tgt
===================================================================
RCS file: /cvs/src/src/ld/configure.tgt,v
retrieving revision 1.149
diff -c -3 -p -r1.149 configure.tgt
*** ld/configure.tgt	17 May 2004 19:50:16 -0000	1.149
--- ld/configure.tgt	6 Jul 2004 16:08:29 -0000
*************** sh*-*-netbsdelf*)
*** 329,334 ****
--- 329,337 ----
  			targ_emul=shelf_nbsd
  			targ_extra_emuls=shlelf_nbsd
  			;;
+ sh*-symbian-elf*)
+ 			targ_emul=shlsymbian
+ 			;;
  shle*-*-elf* | sh[1234]*le*-*-elf | shle*-*-kaos*)
  			targ_emul=shlelf
  			targ_extra_emuls="shelf shl sh"
Index: gas/config.in
===================================================================
RCS file: /cvs/src/src/gas/config.in,v
retrieving revision 1.18
diff -c -3 -p -r1.18 config.in
*** gas/config.in	19 Mar 2004 07:05:55 -0000	1.18
--- gas/config.in	6 Jul 2004 16:08:30 -0000
***************
*** 275,280 ****
--- 275,283 ----
  /* Define if default target is PowerPC Solaris. */
  #undef TARGET_SOLARIS_COMMENT
  
+ /* Define if target is Symbian OS. */
+ #undef TARGET_SYMBIAN
+ 
  /* Target vendor. */
  #undef TARGET_VENDOR
  
Index: gas/configure.in
===================================================================
RCS file: /cvs/src/src/gas/configure.in,v
retrieving revision 1.154
diff -c -3 -p -r1.154 configure.in
*** gas/configure.in	18 Jun 2004 14:09:40 -0000	1.154
--- gas/configure.in	6 Jul 2004 16:08:40 -0000
*************** changequote([,])dnl
*** 448,453 ****
--- 448,456 ----
        sh5*-*-netbsd*)			fmt=elf em=nbsd ;;
        sh64*-*-netbsd*)			fmt=elf em=nbsd ;;
        sh*-*-netbsdelf*)			fmt=elf em=nbsd ;;
+       sh*-symbian-elf*)			fmt=elf endian=little
+ 		AC_DEFINE(TARGET_SYMBIAN, 1, [Define if target is Symbian OS.])
+ 		;;
        sh-*-elf*)			fmt=elf ;;
        sh-*-coff*)			fmt=coff ;;
        sh-*-nto*)			fmt=elf ;;
Index: gas/config/tc-sh.h
===================================================================
RCS file: /cvs/src/src/gas/config/tc-sh.h,v
retrieving revision 1.31
diff -c -3 -p -r1.31 tc-sh.h
*** gas/config/tc-sh.h	18 Mar 2004 00:49:22 -0000	1.31
--- gas/config/tc-sh.h	6 Jul 2004 16:08:41 -0000
*************** extern int target_big_endian;
*** 189,194 ****
--- 189,196 ----
  #define TARGET_FORMAT (!target_big_endian ? "elf32-sh-linux" : "elf32-shbig-linux")
  #elif defined(TE_NetBSD)
  #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-nbsd" : "elf32-sh-nbsd")
+ #elif defined TARGET_SYMBIAN
+ #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-symbian" : "elf32-sh-symbian")
  #else
  #define TARGET_FORMAT (!target_big_endian ? "elf32-shl" : "elf32-sh")
  #endif
Index: bfd/Makefile.am
===================================================================
RCS file: /cvs/src/src/bfd/Makefile.am,v
retrieving revision 1.138
diff -c -3 -p -r1.138 Makefile.am
*** bfd/Makefile.am	5 Jul 2004 13:35:43 -0000	1.138
--- bfd/Makefile.am	6 Jul 2004 16:08:45 -0000
*************** BFD32_BACKENDS = \
*** 253,258 ****
--- 253,259 ----
  	elf32-ppc.lo \
  	elf32-s390.lo \
  	elf32-sh.lo \
+ 	elf32-sh-symbian.lo \
  	elf32-sh64.lo \
  	elf32-sh64-com.lo \
  	elf32-sparc.lo \
*************** BFD32_BACKENDS_CFILES = \
*** 421,426 ****
--- 422,428 ----
  	elf32-sh64-com.c \
  	elf32-s390.c \
  	elf32-sh.c \
+ 	elf32-sh-symbian.c \
  	elf32-sparc.c \
  	elf32-v850.c \
  	elf32-vax.c \
*************** elf32-sh.lo: elf32-sh.c $(INCDIR)/filena
*** 1310,1315 ****
--- 1312,1322 ----
    $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
    $(INCDIR)/libiberty.h $(srcdir)/../opcodes/sh-opc.h \
    elf32-target.h
+ elf32-sh-symbian.lo: elf32-sh-symbian.c elf32-sh.c $(INCDIR)/filenames.h \
+   $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
+   $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h \
+   $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
+   $(srcdir)/../opcodes/sh-opc.h elf32-target.h
  elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \
    $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
    $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \
Index: bfd/config.bfd
===================================================================
RCS file: /cvs/src/src/bfd/config.bfd,v
retrieving revision 1.164
diff -c -3 -p -r1.164 config.bfd
*** bfd/config.bfd	2 Jul 2004 14:12:01 -0000	1.164
--- bfd/config.bfd	6 Jul 2004 16:08:48 -0000
*************** case "${targ}" in
*** 1101,1106 ****
--- 1101,1111 ----
      targ_defvec=bfd_elf32_shnbsd_vec
      targ_selvecs="bfd_elf32_shlnbsd_vec shcoff_vec shlcoff_vec"
      ;;
+   sh*-symbian-elf*)
+     targ_defvec=bfd_elf32_shl_symbian_vec
+     targ_selvecs="shlcoff_vec shlcoff_small_vec"
+     targ_underscore=yes
+     ;;    
    shl*-*-elf* | sh[1234]l*-*-elf* | sh3el*-*-elf* | shl*-*-kaos*)
      targ_defvec=bfd_elf32_shl_vec
      targ_selvecs="bfd_elf32_sh_vec shlcoff_vec shcoff_vec shlcoff_small_vec shcoff_small_vec"
Index: bfd/configure.in
===================================================================
RCS file: /cvs/src/src/bfd/configure.in,v
retrieving revision 1.155
diff -c -3 -p -r1.155 configure.in
*** bfd/configure.in	17 Jun 2004 09:38:38 -0000	1.155
--- bfd/configure.in	6 Jul 2004 16:08:57 -0000
*************** do
*** 649,654 ****
--- 649,655 ----
      bfd_elf32_sh_vec)		tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo" ;;
      bfd_elf32_shblin_vec)	tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
      bfd_elf32_shl_vec)		tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo" ;;
+     bfd_elf32_shl_symbian_vec)	tb="$tb elf32-sh-symbian.lo elf32-sh64-com.lo elf32.lo $elf coff-sh.lo" ;;
      bfd_elf32_shlin_vec)	tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
      bfd_elf32_shlnbsd_vec)	tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
      bfd_elf32_shnbsd_vec)	tb="$tb elf32-sh.lo elf32.lo $elf coff-sh.lo cofflink.lo" ;;
Index: bfd/elf-bfd.h
===================================================================
RCS file: /cvs/src/src/bfd/elf-bfd.h,v
retrieving revision 1.145
diff -c -3 -p -r1.145 elf-bfd.h
*** bfd/elf-bfd.h	1 Jul 2004 13:48:51 -0000	1.145
--- bfd/elf-bfd.h	6 Jul 2004 16:08:58 -0000
*************** struct elf_backend_data
*** 665,670 ****
--- 665,677 ----
      (bfd *abfd, struct bfd_link_info *info, asection *o,
       const Elf_Internal_Rela *relocs);
  
+   /* The CHECK_DIRECTIVES function is called once per input file by
+      the add_symbols phase of the ELF backend linker.  The function
+      must inspect the bfd and create any additional symbols according
+      to any custom directives in the bfd.  */
+   bfd_boolean (*check_directives)
+     (bfd *abfd, struct bfd_link_info *info);
+ 
    /* The ADJUST_DYNAMIC_SYMBOL function is called by the ELF backend
       linker for every symbol which is defined by a dynamic object and
       referenced by a regular object.  This is called after all the
Index: bfd/elf32-sh.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sh.c,v
retrieving revision 1.109
diff -c -3 -p -r1.109 elf32-sh.c
*** bfd/elf32-sh.c	5 Jul 2004 13:35:43 -0000	1.109
--- bfd/elf32-sh.c	6 Jul 2004 16:09:03 -0000
*************** static bfd_boolean sh_elf_relax_delete_b
*** 50,57 ****
--- 50,59 ----
    (bfd *, asection *, bfd_vma, int);
  static bfd_boolean sh_elf_align_loads
    (bfd *, asection *, Elf_Internal_Rela *, bfd_byte *, bfd_boolean *);
+ #ifndef SH64_ELF
  static bfd_boolean sh_elf_swap_insns
    (bfd *, asection *, void *, bfd_byte *, bfd_vma);
+ #endif
  static bfd_boolean sh_elf_relocate_section
    (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
     Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
*************** static enum elf_reloc_type_class sh_elf_
*** 107,116 ****
--- 109,120 ----
  #ifdef INCLUDE_SHMEDIA
  inline static void movi_shori_putval (bfd *, unsigned long, char *);
  #endif
+ #if !defined SH_TARGET_ALREADY_DEFINED
  static bfd_boolean elf32_shlin_grok_prstatus
    (bfd *abfd, Elf_Internal_Note *note);
  static bfd_boolean elf32_shlin_grok_psinfo
    (bfd *abfd, Elf_Internal_Note *note);
+ #endif
  
  /* The name of the dynamic interpreter.  This is put in the .interp
     section.  */
*************** sh_elf_align_loads (bfd *abfd ATTRIBUTE_
*** 3090,3095 ****
--- 3094,3100 ----
    return FALSE;
  }
  
+ #ifndef SH64_ELF
  /* Swap two SH instructions.  This is like sh_swap_insns in coff-sh.c.  */
  
  static bfd_boolean
*************** sh_elf_swap_insns (bfd *abfd, asection *
*** 3218,3223 ****
--- 3223,3229 ----
  
    return TRUE;
  }
+ #endif /* defined SH64_ELF */
  
  #ifdef INCLUDE_SHMEDIA
  
*************** sh_elf_set_mach_from_flags (bfd *abfd)
*** 6827,6832 ****
--- 6833,6839 ----
     return the equivalent ELF flags from the table.
     Return -1 if no match is found.  */
  
+ #ifndef SH_TARGET_ALREADY_DEFINED
  int
  sh_elf_get_flags_from_mach (unsigned long mach)
  {
*************** sh_elf_get_flags_from_mach (unsigned lon
*** 6841,6846 ****
--- 6848,6854 ----
  
    return -1;
  }
+ #endif
  #endif /* not sh_elf_set_mach_from_flags */
  
  #ifndef sh_elf_set_private_flags
*************** sh_elf_copy_private_data (bfd * ibfd, bf
*** 6876,6889 ****
  
  /* This function returns the ELF architecture number that
     corresponds to the given arch_sh* flags.  */
  int
  sh_find_elf_flags (unsigned int arch_set)
  {
    unsigned long bfd_mach = sh_get_bfd_mach_from_arch_set (arch_set);
  
    return sh_elf_get_flags_from_mach (bfd_mach);
  }
! 
  
  /* This routine initialises the elf flags when required and
     calls sh_merge_bfd_arch() to check dsp/fpu compatibility.  */
--- 6884,6900 ----
  
  /* This function returns the ELF architecture number that
     corresponds to the given arch_sh* flags.  */
+ 
+ #ifndef SH_TARGET_ALREADY_DEFINED
  int
  sh_find_elf_flags (unsigned int arch_set)
  {
+   extern unsigned long sh_get_bfd_mach_from_arch_set (unsigned int);
    unsigned long bfd_mach = sh_get_bfd_mach_from_arch_set (arch_set);
  
    return sh_elf_get_flags_from_mach (bfd_mach);
  }
! #endif
  
  /* This routine initialises the elf flags when required and
     calls sh_merge_bfd_arch() to check dsp/fpu compatibility.  */
*************** sh_find_elf_flags (unsigned int arch_set
*** 6891,6896 ****
--- 6902,6909 ----
  static bfd_boolean
  sh_elf_merge_private_data (bfd *ibfd, bfd *obfd)
  {
+   extern bfd_boolean sh_merge_bfd_arch (bfd *, bfd *);
+ 
    if (   bfd_get_flavour (ibfd) != bfd_target_elf_flavour
        || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
      return TRUE;
*************** sh_elf_merge_private_data (bfd *ibfd, bf
*** 6903,6909 ****
        sh_elf_set_mach_from_flags (obfd);
      }
  
!   if ( ! sh_merge_bfd_arch (ibfd, obfd) )
      return FALSE;
  
    elf_elfheader (obfd)->e_flags =
--- 6916,6922 ----
        sh_elf_set_mach_from_flags (obfd);
      }
  
!   if (! sh_merge_bfd_arch (ibfd, obfd))
      return FALSE;
  
    elf_elfheader (obfd)->e_flags =
*************** sh_elf_reloc_type_class (const Elf_Inter
*** 7383,7389 ****
--- 7396,7404 ----
      }
  }
  
+ #if !defined SH_TARGET_ALREADY_DEFINED
  /* Support for Linux core dump NOTE sections.  */
+ 
  static bfd_boolean
  elf32_shlin_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
  {
*************** elf32_shlin_grok_psinfo (bfd *abfd, Elf_
*** 7443,7448 ****
--- 7458,7464 ----
  
    return TRUE;
  }
+ #endif /* not SH_TARGET_ALREADY_DEFINED */
  
   
  /* Return address for Ith PLT stub in section PLT, for relocation REL
*************** sh_elf_plt_sym_val (bfd_vma i, const ase
*** 7455,7464 ****
--- 7471,7483 ----
    return plt->vma + (i + 1) * PLT_ENTRY_SIZE;
  }
  
+ #if !defined SH_TARGET_ALREADY_DEFINED
  #define TARGET_BIG_SYM		bfd_elf32_sh_vec
  #define TARGET_BIG_NAME		"elf32-sh"
  #define TARGET_LITTLE_SYM	bfd_elf32_shl_vec
  #define TARGET_LITTLE_NAME	"elf32-shl"
+ #endif
+ 
  #define ELF_ARCH		bfd_arch_sh
  #define ELF_MACHINE_CODE	EM_SH
  #ifdef __QNXTARGET__
*************** sh_elf_plt_sym_val (bfd_vma i, const ase
*** 7511,7517 ****
  #define elf_backend_want_plt_sym	0
  #define elf_backend_got_header_size	12
  
! #ifndef INCLUDE_SHMEDIA
  
  #include "elf32-target.h"
  
--- 7530,7536 ----
  #define elf_backend_want_plt_sym	0
  #define elf_backend_got_header_size	12
  
! #if !defined INCLUDE_SHMEDIA && !defined SH_TARGET_ALREADY_DEFINED
  
  #include "elf32-target.h"
  
*************** sh_elf_plt_sym_val (bfd_vma i, const ase
*** 7553,7556 ****
  
  #include "elf32-target.h"
  
! #endif /* INCLUDE_SHMEDIA */
--- 7572,7575 ----
  
  #include "elf32-target.h"
  
! #endif /* neither INCLUDE_SHMEDIA nor SH_TARGET_ALREADY_DEFINED */
Index: bfd/elf32-sh64.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-sh64.c,v
retrieving revision 1.26
diff -c -3 -p -r1.26 elf32-sh64.c
*** bfd/elf32-sh64.c	24 Jun 2004 04:46:21 -0000	1.26
--- bfd/elf32-sh64.c	6 Jul 2004 16:09:04 -0000
*************** static void sh64_find_section_for_addres
*** 106,111 ****
--- 106,112 ----
  
  #define GOT_BIAS (-((long)-32768))
  #define INCLUDE_SHMEDIA
+ #define SH_TARGET_ALREADY_DEFINED
  #include "elf32-sh.c"
  
  /* Tack some extra info on struct bfd_elf_section_data.  */
Index: bfd/elflink.c
===================================================================
RCS file: /cvs/src/src/bfd/elflink.c,v
retrieving revision 1.79
diff -c -3 -p -r1.79 elflink.c
*** bfd/elflink.c	2 Jul 2004 01:39:31 -0000	1.79
--- bfd/elflink.c	6 Jul 2004 16:09:13 -0000
*************** elf_link_add_object_symbols (bfd *abfd, 
*** 2904,2909 ****
--- 2904,2911 ----
       const char **, flagword *, asection **, bfd_vma *);
    bfd_boolean (*check_relocs)
      (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
+   bfd_boolean (*check_directives)
+     (bfd *, struct bfd_link_info *);
    bfd_boolean collect;
    Elf_Internal_Shdr *hdr;
    bfd_size_type symcount;
*************** elf_link_add_object_symbols (bfd *abfd, 
*** 4053,4058 ****
--- 4055,4064 ----
        free (sorted_sym_hash);
      }
  
+   check_directives = get_elf_backend_data (abfd)->check_directives;
+   if (check_directives)
+     check_directives (abfd, info);
+ 
    /* If this object is the same format as the output object, and it is
       not a shared library, then let the backend look through the
       relocs.
Index: bfd/elfxx-target.h
===================================================================
RCS file: /cvs/src/src/bfd/elfxx-target.h,v
retrieving revision 1.66
diff -c -3 -p -r1.66 elfxx-target.h
*** bfd/elfxx-target.h	21 Jun 2004 14:45:41 -0000	1.66
--- bfd/elfxx-target.h	6 Jul 2004 16:09:13 -0000
***************
*** 330,335 ****
--- 330,338 ----
  #ifndef elf_backend_check_relocs
  #define elf_backend_check_relocs	0
  #endif
+ #ifndef elf_backend_check_directives
+ #define elf_backend_check_directives	0
+ #endif
  #ifndef elf_backend_adjust_dynamic_symbol
  #define elf_backend_adjust_dynamic_symbol 0
  #endif
*************** static const struct elf_backend_data elf
*** 510,515 ****
--- 513,519 ----
    elf_backend_create_dynamic_sections,
    elf_backend_omit_section_dynsym,
    elf_backend_check_relocs,
+   elf_backend_check_directives,
    elf_backend_adjust_dynamic_symbol,
    elf_backend_always_size_sections,
    elf_backend_size_dynamic_sections,
Index: bfd/targets.c
===================================================================
RCS file: /cvs/src/src/bfd/targets.c,v
retrieving revision 1.111
diff -c -3 -p -r1.111 targets.c
*** bfd/targets.c	24 May 2004 14:48:17 -0000	1.111
--- bfd/targets.c	6 Jul 2004 16:09:14 -0000
*************** extern const bfd_target bfd_elf32_sh64nb
*** 589,594 ****
--- 589,595 ----
  extern const bfd_target bfd_elf32_sh_vec;
  extern const bfd_target bfd_elf32_shblin_vec;
  extern const bfd_target bfd_elf32_shl_vec;
+ extern const bfd_target bfd_elf32_shl_symbian_vec;
  extern const bfd_target bfd_elf32_shlin_vec;
  extern const bfd_target bfd_elf32_shlnbsd_vec;
  extern const bfd_target bfd_elf32_shnbsd_vec;
*************** static const bfd_target * const _bfd_tar
*** 880,885 ****
--- 881,887 ----
          &bfd_elf32_sh_vec,
          &bfd_elf32_shblin_vec,
          &bfd_elf32_shl_vec,
+         &bfd_elf32_shl_symbian_vec,
          &bfd_elf32_shlin_vec,
  	&bfd_elf32_shlnbsd_vec,
  	&bfd_elf32_shnbsd_vec,
*** /dev/null	2004-02-18 15:26:44.000000000 +0000
--- bfd/elf32-sh-symbian.c	2004-07-06 17:05:23.000000000 +0100
***************
*** 0 ****
--- 1,625 ----
+ /* Renesas / SuperH specific support for Symbian 32-bit ELF files
+    Copyright 2004
+    Free Software Foundation, Inc.
+    Contributed by Red Hat
+ 
+    This file is part of BFD, the Binary File Descriptor library.
+ 
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+ 
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+ 
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+ 
+ /* Stop elf32-sh.c from defining any target vectors.  */
+ #define SH_TARGET_ALREADY_DEFINED
+ #include "elf32-sh.c"
+ 
+ 
+ //#define DEBUG 1
+ #define DEBUG 0
+ 
+ #define DIRECTIVE_HEADER	"#<SYMEDIT>#\n"
+ #define DIRECTIVE_IMPORT	"IMPORT "
+ #define DIRECTIVE_EXPORT	"EXPORT "
+ #define DIRECTIVE_AS		"AS "
+ 
+ /* Macro to advance 's' until either it reaches 'e' or the
+    character pointed to by 's' is equal to 'c'.  If 'e' is
+    reached and DEBUG is enabled then the error message 'm'
+    is displayed.  */
+ #define SKIP_UNTIL(s,e,c,m)					\
+   do								\
+     {								\
+       while (s < e && *s != c)					\
+ 	++ s;							\
+       if (s >= e)						\
+ 	{							\
+           if (DEBUG)						\
+ 	    fprintf (stderr, "Corrupt directive: %s\n", m);	\
+ 	  result = FALSE;					\
+ 	}							\
+     }								\
+   while (0);							\
+   if (!result)							\
+      break;
+ 
+ /* Like SKIP_UNTIL except there are two terminator characters
+    c1 and c2.  */
+ #define SKIP_UNTIL2(s,e,c1,c2,m)				\
+   do								\
+     {								\
+       while (s < e && *s != c1 && *s != c2)			\
+ 	++ s;							\
+       if (s >= e)						\
+ 	{							\
+           if (DEBUG)						\
+ 	    fprintf (stderr, "Corrupt directive: %s\n", m);	\
+ 	  result = FALSE;					\
+ 	}							\
+     }								\
+   while (0);							\
+   if (!result)							\
+      break;
+ 
+ /* Macro to advance 's' until either it reaches 'e' or the
+    character pointed to by 's' is not equal to 'c'.  If 'e'
+    is reached and DEBUG is enabled then the error message
+    'm' is displayed.  */
+ #define SKIP_WHILE(s,e,c,m)					\
+   do								\
+     {								\
+       while (s < e && *s == c)					\
+ 	++ s;							\
+       if (s >= e)						\
+ 	{							\
+           if (DEBUG)						\
+ 	    fprintf (stderr, "Corrupt directive: %s\n", m);	\
+ 	  result = FALSE;					\
+ 	}							\
+     }								\
+   while (0);							\
+   if (!result)							\
+      break;
+ 
+ 
+ typedef struct symbol_rename
+ {
+   struct symbol_rename *       next;
+   bfd_byte *                   current_name;
+   bfd_byte *                   new_name;
+   struct elf_link_hash_entry * current_hash;
+   unsigned long                new_symndx;
+ }
+ symbol_rename;
+ 
+ static symbol_rename * rename_list = NULL;
+ 
+ /* Accumulate a list of symbols to be renamed.  */
+ 
+ static bfd_boolean
+ sh_symbian_import_as (struct bfd_link_info *info, bfd * abfd,
+ 		      bfd_byte * current_name, bfd_byte * new_name)
+ {
+   struct elf_link_hash_entry * new_hash;
+   symbol_rename * node;
+ 
+   if (DEBUG)
+     fprintf (stderr, "IMPORT '%s' AS '%s'\n", current_name, new_name);
+ 
+   for (node = rename_list; node; node = node->next)
+     if (strcmp (node->current_name, current_name) == 0)
+       {
+ 	if (strcmp (node->new_name, new_name) == 0)
+ 	  /* Already added to rename list.  */
+ 	  return TRUE;
+ 
+ 	bfd_set_error (bfd_error_invalid_operation);
+ 	_bfd_error_handler (_("%s: IMPORT AS directive for %s conceals previous IMPORT AS"),
+ 			    bfd_archive_filename (abfd), current_name);
+ 	return FALSE;	    
+       }
+ 
+   if ((node = bfd_malloc (sizeof * node)) == NULL)
+     {
+       if (DEBUG)
+ 	fprintf (stderr, "IMPORT AS: No mem for new rename node\n");
+       return FALSE;
+     }
+ 
+   if ((node->current_name = bfd_malloc (strlen (current_name) + 1)) == NULL)
+     {
+       if (DEBUG)
+ 	fprintf (stderr, "IMPORT AS: No mem for current name field in rename node\n");
+       free (node);
+       return FALSE;
+     }
+   else
+     strcpy (node->current_name, current_name);
+   
+   if ((node->new_name = bfd_malloc (strlen (new_name) + 1)) == NULL)
+     {
+       if (DEBUG)
+ 	fprintf (stderr, "IMPORT AS: No mem for new name field in rename node\n");
+       free (node->current_name);
+       free (node);
+       return FALSE;
+     }
+   else
+     strcpy (node->new_name, new_name);
+ 
+   node->next = rename_list;
+   node->current_hash = NULL;
+   node->new_symndx = 0;
+   rename_list = node;
+ 
+   new_hash = elf_link_hash_lookup (elf_hash_table (info), node->new_name, TRUE, FALSE, TRUE);
+   bfd_elf_link_record_dynamic_symbol (info, new_hash);
+   if (new_hash->root.type == bfd_link_hash_new)
+     new_hash->root.type = bfd_link_hash_undefined;
+ 
+   return TRUE;
+ }
+ 
+ 
+ static bfd_boolean
+ sh_symbian_import (bfd * abfd ATTRIBUTE_UNUSED, bfd_byte * name)
+ {
+   if (DEBUG)
+     fprintf (stderr, "IMPORT '%s'\n", name);
+ 
+   /* XXX: Generate an import somehow ?  */
+ 
+   return TRUE;
+ }
+ 
+ static bfd_boolean
+ sh_symbian_export (bfd * abfd ATTRIBUTE_UNUSED, bfd_byte * name)
+ {
+   if (DEBUG)
+     fprintf (stderr, "EXPORT '%s'\n", name);
+ 
+   /* XXX: Generate an export somehow ?  */
+ 
+   return TRUE;
+ }
+ 
+ /* Process any magic embedded commands in the .directive. section.
+    Returns TRUE upon sucecss, but if it fails it sets bfd_error and
+    returns FALSE.  */
+ 
+ static bfd_boolean
+ sh_symbian_process_embedded_commands (struct bfd_link_info *info, bfd * abfd,
+ 				      asection * sec, bfd_byte * contents)
+ {
+   bfd_byte *s;
+   bfd_byte *e;
+   bfd_boolean result = TRUE;
+   bfd_size_type sz = sec->rawsize ? sec->rawsize : sec->size;
+ 
+   for (s = contents, e = s + sz; s < e;)
+     {
+       bfd_byte * directive = s;
+ 
+       switch (*s)
+ 	{
+ 	  /* I want to use "case DIRECTIVE_HEADER [0]:" here but gcc won't let me :-(  */
+ 	case '#':
+ 	  if (strcmp (s, DIRECTIVE_HEADER))
+ 	    result = FALSE;
+ 	  else
+ 	    /* Just ignore the header.
+ 	       XXX: Strictly speaking we ought to check that the header
+ 	       is present and that it is the first thing in the file.  */
+ 	    s += strlen (DIRECTIVE_HEADER) + 1;
+ 	  break;
+ 
+ 	case 'I':
+ 	  if (strncmp (s, DIRECTIVE_IMPORT, strlen (DIRECTIVE_IMPORT)))
+ 	    result = FALSE;
+ 	  else
+ 	    {
+ 	      bfd_byte * new_name;
+ 	      bfd_byte * new_name_end;
+ 	      bfd_byte   name_end_char;
+ 
+ 	      /* Skip the IMPORT directive.  */
+ 	      s += strlen (DIRECTIVE_IMPORT);
+ 
+ 	      new_name = s;
+ 	      /* Find the end of the new name.  */
+ 	      while (s < e && *s != ' ' && *s != '\n')
+ 		++ s;
+ 	      if (s >= e)
+ 		{
+ 		  /* We have reached the end of the .directive section
+ 		     without encountering a string terminator.  This is
+ 		     allowed for IMPORT directives.  */
+ 		  new_name_end   = e - 1;
+ 		  name_end_char  = * new_name_end;
+ 		  * new_name_end = 0;
+ 		  result = sh_symbian_import (abfd, new_name);
+ 		  * new_name_end = name_end_char;
+ 		  break;
+ 		}
+ 
+ 	      /* Remember where the name ends.  */
+ 	      new_name_end = s;
+ 	      /* Skip any whitespace before the 'AS'.  */
+ 	      SKIP_WHILE (s, e, ' ', "IMPORT: Name just followed by spaces");
+ 	      /* Terminate the new name.  (Do this after skiping...)  */
+ 	      name_end_char = * new_name_end;
+ 	      * new_name_end = 0;
+ 
+ 	      /* Check to see if 'AS '... is present.  If se we have an IMPORT AS
+ 		 directive, otherwise we have an IMPORT directive.  */
+ 	      if (strncmp (s, DIRECTIVE_AS, strlen (DIRECTIVE_AS)))
+ 		{
+ 		  /* Skip the new-line at the end of the name.  */
+ 		  if (DEBUG && name_end_char != '\n')
+ 		    fprintf (stderr, "IMPORT: No newline at end of directive\n");
+ 		  else
+ 		    s ++;
+ 
+ 		  result = sh_symbian_import (abfd, new_name);
+ 
+ 		  /* Skip past the NUL character.  */
+ 		  if (* s ++ != 0)
+ 		    {
+ 		      if (DEBUG)
+ 			fprintf (stderr, "IMPORT: No NUL at end of directive\n");
+ 		    }
+ 		}
+ 	      else
+ 		{
+ 		  bfd_byte * current_name;
+ 		  bfd_byte * current_name_end;
+ 		  bfd_byte   current_name_end_char;
+ 
+ 		  /* Skip the 'AS '.  */
+ 		  s += strlen (DIRECTIVE_AS);
+ 		  /* Skip any white space after the 'AS '.  */
+ 		  SKIP_WHILE (s, e, ' ', "IMPORT AS: Nothing after AS");
+ 		  current_name = s;
+ 		  /* Find the end of the current name.  */
+ 		  SKIP_UNTIL2 (s, e, ' ', '\n', "IMPORT AS: No newline at the end of the current name");
+ 		  /* Skip (backwards) over spaces at the end of the current name.  */
+ 		  current_name_end = s;
+ 		  current_name_end_char = * current_name_end;
+ 
+ 		  SKIP_WHILE (s, e, ' ', "IMPORT AS: Current name just followed by spaces");
+ 		  /* Skip past the newline character.  */
+ 		  if (* s ++ != '\n')
+ 		    if (DEBUG)
+ 		      fprintf (stderr, "IMPORT AS: No newline at end of directive\n");
+ 
+ 		  /* Terminate the current name after having performed the skips.  */
+ 		  * current_name_end = 0;
+ 
+ 		  result = sh_symbian_import_as (info, abfd, current_name, new_name);
+ 
+ 		  /* The next character should be a NUL.  */
+ 		  if (* s != 0)
+ 		    {
+ 		      if (DEBUG)
+ 			fprintf (stderr, "IMPORT AS: Junk at end of directive\n");
+ 		      result = FALSE;
+ 		    }
+ 		  s ++;
+ 
+ 		  * current_name_end = current_name_end_char;
+ 		}
+ 
+ 	      /* Restore the characters we overwrote, since
+ 		 the .directive section will be emitted.  */
+ 	      * new_name_end = name_end_char;
+ 	    }
+ 	  break;
+ 
+ 	case 'E':
+ 	  if (strncmp (s, DIRECTIVE_EXPORT, strlen (DIRECTIVE_EXPORT)))
+ 	    result = FALSE;
+ 	  else
+ 	    {
+ 	      bfd_byte * name;
+ 	      bfd_byte * name_end;
+ 	      bfd_byte   name_end_char;
+ 
+ 	      /* Skip the directive.  */
+ 	      s += strlen (DIRECTIVE_EXPORT);
+ 	      name = s;
+ 	      /* Find the end of the name to be exported.  */
+ 	      SKIP_UNTIL (s, e, '\n', "EXPORT: no newline at end of directive");
+ 	      /* Skip (backwards) over spaces at end of exported name.  */
+ 	      for (name_end = s; name_end[-1] == ' '; name_end --)
+ 		;
+ 	      /* name_end now points at the first character after the
+ 		 end of the exported name, so we can termiante it  */
+ 	      name_end_char = * name_end;
+ 	      * name_end = 0;
+ 	      /* Skip passed the newline character.  */
+ 	      s ++;
+ 
+ 	      result = sh_symbian_export (abfd, name);
+ 
+ 	      /* The next character should be a NUL.  */
+ 	      if (* s != 0)
+ 		{
+ 		  if (DEBUG)
+ 		    fprintf (stderr, "EXPORT: Junk at end of directive\n");
+ 		  result = FALSE;
+ 		}
+ 	      s++;
+ 
+ 	      /* Restore the character we deleted.  */
+ 	      * name_end = name_end_char;
+ 	    }
+ 	  break;
+ 
+ 	default:
+ 	  result = FALSE;
+ 	  break;
+ 	}
+ 
+       if (! result)
+ 	{
+ 	  if (DEBUG)
+ 	    fprintf (stderr, "offset into .directive section: %d\n", directive - contents);
+ 	  
+ 	  bfd_set_error (bfd_error_invalid_operation);
+ 	  _bfd_error_handler (_("%s: Unrecognised .directive command: %s"),
+ 			      bfd_archive_filename (abfd), directive);
+ 	  break;
+ 	}
+     }
+ 
+   return result;
+ }
+ 
+ 
+ /* Scan a bfd for a .directive section, and if found process it.
+    Returns TRUE upon success, FALSE otherwise.  */
+ bfd_boolean bfd_elf32_sh_symbian_process_directives (struct bfd_link_info *info, bfd * abfd);
+ 
+ bfd_boolean
+ bfd_elf32_sh_symbian_process_directives (struct bfd_link_info *info, bfd * abfd)
+ {
+   bfd_boolean result = FALSE;
+   bfd_byte *  contents;
+   asection *  sec = bfd_get_section_by_name (abfd, ".directive");
+   bfd_size_type sz;
+ 
+   if (!sec)
+     return TRUE;
+ 
+   sz = sec->rawsize ? sec->rawsize : sec->size;
+   contents = bfd_malloc (sz);
+ 
+   if (!contents)
+     bfd_set_error (bfd_error_no_memory);
+   else 
+     {
+       if (bfd_get_section_contents (abfd, sec, contents, 0, sz))
+ 	result = sh_symbian_process_embedded_commands (info, abfd, sec, contents);
+       free (contents);
+     }
+ 
+   return result;
+ }
+ 
+ /* Intercept the normal sh_relocate_section() function
+    and magle the relocs to allow for symbol renaming.  */
+ 
+ static bfd_boolean
+ sh_symbian_relocate_section (bfd *                  output_bfd,
+ 			     struct bfd_link_info * info,
+ 			     bfd *                  input_bfd,
+ 			     asection *             input_section,
+ 			     bfd_byte *             contents,
+ 			     Elf_Internal_Rela *    relocs,
+ 			     Elf_Internal_Sym *     local_syms,
+ 			     asection **            local_sections)
+ {
+   /* When performing a final link we implement the IMPORT AS directives.  */
+   if (!info->relocatable)
+     {
+       Elf_Internal_Rela *            rel;
+       Elf_Internal_Rela *            relend;
+       Elf_Internal_Shdr *            symtab_hdr;
+       struct elf_link_hash_entry **  sym_hashes;
+       struct elf_link_hash_entry **  sym_hashes_end;
+       struct elf_link_hash_table *   hash_table;
+       symbol_rename *                ptr;
+       bfd_size_type                  num_global_syms;
+       unsigned long		     num_local_syms;
+       
+       BFD_ASSERT (! elf_bad_symtab (input_bfd));
+  
+       symtab_hdr       = & elf_tdata (input_bfd)->symtab_hdr;
+       hash_table       = elf_hash_table (info);
+       num_local_syms   = symtab_hdr->sh_info;
+       num_global_syms  = symtab_hdr->sh_size / sizeof (Elf32_External_Sym);
+       num_global_syms -= num_local_syms;
+       sym_hashes       = elf_sym_hashes (input_bfd);
+       sym_hashes_end   = sym_hashes + num_global_syms;
+ 
+       /* First scan the rename table, caching the hash entry and the new index.  */
+       for (ptr = rename_list; ptr; ptr = ptr->next)
+ 	{
+ 	  struct elf_link_hash_entry *   new_hash;
+ 	  struct elf_link_hash_entry **  h;
+ 
+ 	  ptr->current_hash = elf_link_hash_lookup (hash_table, ptr->current_name, FALSE, FALSE, TRUE);
+ 
+ 	  if (ptr->current_hash == NULL)
+ 	    {
+ 	      if (DEBUG)
+ 		fprintf (stderr, "IMPORT AS: current symbol '%s' does not exist\n", ptr->current_name);
+ 	      continue;
+ 	    }
+ 	  
+ 	  new_hash = elf_link_hash_lookup (hash_table, ptr->new_name, FALSE, FALSE, TRUE);
+ 
+ 	  /* If we could not find the symbol then it is a new, undefined symbol.
+ 	     Symbian want this behaviour - ie they want to be able to rename the
+ 	     reference in a reloc from one undefined symbol to another, new and
+ 	     undefined symbol.  So we create that symbol here.  */
+ 	  if (new_hash == NULL)
+ 	    {
+ 	      asection *                     psec = bfd_und_section_ptr;
+ 	      Elf_Internal_Sym               new_sym;
+ 	      bfd_vma                        new_value = 0;
+ 	      bfd_boolean                    skip;
+ 	      bfd_boolean                    override;
+ 	      bfd_boolean                    type_change_ok;
+ 	      bfd_boolean                    size_change_ok;
+ 
+ 	      new_sym.st_value = 0;
+ 	      new_sym.st_size  = 0;
+ 	      new_sym.st_name  = -1;
+ 	      new_sym.st_info  = ELF_ST_INFO (STB_GLOBAL, STT_FUNC);
+ 	      new_sym.st_other = ELF_ST_VISIBILITY (STV_DEFAULT);
+ 	      new_sym.st_shndx = SHN_UNDEF;
+ 
+ 	      if (! _bfd_elf_merge_symbol (input_bfd, info, ptr->new_name, & new_sym, & psec,
+ 					   & new_value, & new_hash, & skip, & override, & type_change_ok,
+ 					   & size_change_ok))
+ 		{
+ 		  _bfd_error_handler (_("%s: Failed to add renamed symbol %s"),
+ 				      bfd_archive_filename (input_bfd), ptr->new_name);
+ 		  continue;
+ 		}
+ 	      /* XXX - should we check psec, skip, override etc ?  */
+ 
+ 	      new_hash->root.type = bfd_link_hash_undefined;
+ 
+ 	      /* Allow the symbol to become local if necessary.  */
+ 	      if (new_hash->dynindx == -1)
+ 		new_hash->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
+ 
+ 	      if (DEBUG)
+ 		fprintf (stderr, "Created new symbol %s\n", ptr->new_name);
+ 	    }
+ 
+ 	  /* Convert the new_hash value into a index into the table of symbol hashes.  */
+ 	  for (h = sym_hashes; h < sym_hashes_end; h ++)
+ 	    {
+ 	      if (* h == new_hash)
+ 		{
+ 		  ptr->new_symndx = h - sym_hashes + num_local_syms;
+ 		  if (DEBUG)
+ 		    fprintf (stderr, "Converted new hash to index of %ld\n", ptr->new_symndx);
+ 		  break;
+ 		}
+ 	    }
+ 	  /* If the new symbol is not in the hash table then it must be
+ 	     because it is one of the newly created undefined symbols
+ 	     manufactured above.  So we extend the sym has table here to
+ 	     include this extra symbol.  */
+ 	  if (h == sym_hashes_end)
+ 	    {
+ 	      struct elf_link_hash_entry **  new_sym_hashes;
+ 
+ 	      /* This is not very efficient, but it works.  */
+ 	      ++ num_global_syms;
+ 	      new_sym_hashes = bfd_alloc (input_bfd, num_global_syms * sizeof * sym_hashes);
+ 	      if (new_sym_hashes == NULL)
+ 		{
+ 		  if (DEBUG)
+ 		    fprintf (stderr, "Out of memory extending hash table\n");
+ 		  continue;
+ 		}
+ 	      memcpy (new_sym_hashes, sym_hashes, (num_global_syms - 1) * sizeof * sym_hashes);
+ 	      new_sym_hashes[num_global_syms - 1] = new_hash;
+ 	      elf_sym_hashes (input_bfd) = sym_hashes = new_sym_hashes;
+ 	      sym_hashes_end = sym_hashes + num_global_syms;
+ 	      symtab_hdr->sh_size  = (num_global_syms + num_local_syms) * sizeof (Elf32_External_Sym);
+ 
+ 	      ptr->new_symndx = num_global_syms - 1 + num_local_syms;
+ 
+ 	      if (DEBUG)
+ 		fprintf (stderr, "Extended symbol hash table to insert new symbol as index %ld\n",
+ 			 ptr->new_symndx);
+ 	    }
+ 	}
+ 
+       /* Walk the reloc list looking for references to renamed symbols.
+ 	 When we find one, we alter the index in the reloc to point to the new symbol.  */
+       for (rel = relocs, relend = relocs + input_section->reloc_count;
+ 	   rel < relend;
+ 	   rel ++)
+ 	{
+ 	  int                          r_type;
+ 	  unsigned long                r_symndx;
+ 	  struct elf_link_hash_entry * h;
+       
+ 	  r_symndx = ELF32_R_SYM (rel->r_info);
+ 	  r_type = ELF32_R_TYPE (rel->r_info);
+ 
+ 	  /* Ignore unused relocs.  */
+ 	  if ((r_type >= (int) R_SH_GNU_VTINHERIT
+ 	       && r_type <= (int) R_SH_LABEL)
+ 	      || r_type == (int) R_SH_NONE
+ 	      || r_type < 0
+ 	      || r_type >= R_SH_max)
+ 	    continue;
+ 
+ 	  /* Ignore relocs against local symbols.  */
+ 	  if (r_symndx < num_local_syms)
+ 	    continue;
+ 
+ 	  BFD_ASSERT (r_symndx < (num_global_syms + num_local_syms));
+ 	  h = sym_hashes[r_symndx - num_local_syms];
+ 	  BFD_ASSERT (h != NULL);
+ 
+ 	  while (   h->root.type == bfd_link_hash_indirect
+ 		 || h->root.type == bfd_link_hash_warning)
+ 	    h = (struct elf_link_hash_entry *) h->root.u.i.link;
+ 
+ 	  /* If the symbol is defined there is no need to rename it.
+ 	     XXX - is this true ?  */
+ 	  if (   h->root.type == bfd_link_hash_defined
+ 	      || h->root.type == bfd_link_hash_defweak
+ 	      || h->root.type == bfd_link_hash_undefweak)
+ 	    continue;
+ 
+ 	  for (ptr = rename_list; ptr; ptr = ptr->next)
+ 	    if (h == ptr->current_hash)
+ 	      {
+ 		BFD_ASSERT (ptr->new_symndx);
+ 		if (DEBUG)
+ 		  fprintf (stderr, "convert reloc %lx from using index %ld to using index %ld\n",
+ 			   (long) rel->r_info, (long) ELF32_R_SYM (rel->r_info), ptr->new_symndx);
+ 		rel->r_info = ELF32_R_INFO (ptr->new_symndx, r_type);
+ 		break;
+ 	      }
+ 	}
+     }
+   
+   return sh_elf_relocate_section (output_bfd, info, input_bfd, input_section,
+ 				  contents, relocs, local_syms, local_sections);
+ }
+ 
+ static bfd_boolean
+ sh_symbian_check_directives (bfd *abfd, struct bfd_link_info *info)
+ {
+   return bfd_elf32_sh_symbian_process_directives (info, abfd);
+ }
+ 
+ #define TARGET_LITTLE_SYM	bfd_elf32_shl_symbian_vec
+ #define TARGET_LITTLE_NAME      "elf32-shl-symbian"
+ 
+ #undef  elf_backend_relocate_section
+ #define elf_backend_relocate_section	sh_symbian_relocate_section
+ #undef  elf_backend_check_directives
+ #define elf_backend_check_directives    sh_symbian_check_directives
+ 
+ #include "elf32-target.h"
*** /dev/null	2004-02-18 15:26:44.000000000 +0000
--- ld/emulparams/shlsymbian.sh	2004-07-02 15:19:04.000000000 +0100
***************
*** 0 ****
--- 1,17 ----
+ TEXT_START_ADDR=0x8000
+ SHLIB_TEXT_START_ADDR=0x8000
+ SHLIB_DATA_ADDR=0x400000
+ 
+ . ${srcdir}/emulparams/shelf.sh
+ 
+ # Use only two underscores for the constructor/destructor symbols
+ CTOR_START='__ctors = .;'
+ CTOR_END='__ctors_end = .;'
+ DTOR_START='__dtors = .;'
+ DTOR_END='__dtors_end = .;'
+ 
+ # Suppress the .stack section.
+ test -z "$CREATE_SHLIB" && OTHER_SECTIONS="${RELOCATING+PROVIDE (_stack = 0x30000);}"
+ 
+ OUTPUT_FORMAT="elf32-shl-symbian"
+ SCRIPT_NAME=elf32sh-symbian
*** /dev/null	2004-02-18 15:26:44.000000000 +0000
--- ld/scripttempl/elf32sh-symbian.sc	2004-07-02 15:18:37.000000000 +0100
***************
*** 0 ****
--- 1,377 ----
+ #
+ # Unusual variables checked by this code:
+ #	NOP - four byte opcode for no-op (defaults to 0)
+ #	DATA_ADDR - if end-of-text-plus-one-page isn't right for data start
+ #	INITIAL_READONLY_SECTIONS - at start of text segment
+ #	OTHER_READONLY_SECTIONS - other than .text .init .rodata ...
+ #		(e.g., .PARISC.milli)
+ #	OTHER_TEXT_SECTIONS - these get put in .text when relocating
+ #	OTHER_READWRITE_SECTIONS - other than .data .bss .ctors .sdata ...
+ #		(e.g., .PARISC.global)
+ #	OTHER_BSS_SECTIONS - other than .bss .sbss ...
+ #	OTHER_SECTIONS - at the end
+ #	EXECUTABLE_SYMBOLS - symbols that must be defined for an
+ #		executable (e.g., _DYNAMIC_LINK)
+ #	TEXT_START_SYMBOLS - symbols that appear at the start of the
+ #		.text section.
+ #	DATA_START_SYMBOLS - symbols that appear at the start of the
+ #		.data section.
+ #	OTHER_GOT_SYMBOLS - symbols defined just before .got.
+ #	OTHER_GOT_SECTIONS - sections just after .got.
+ #	OTHER_SDATA_SECTIONS - sections just after .sdata.
+ #	OTHER_BSS_SYMBOLS - symbols that appear at the start of the
+ #		.bss section besides __bss_start.
+ #	DATA_PLT - .plt should be in data segment, not text segment.
+ #	BSS_PLT - .plt should be in bss segment
+ #	TEXT_DYNAMIC - .dynamic in text segment, not data segment.
+ #	EMBEDDED - whether this is for an embedded system. 
+ #	SHLIB_TEXT_START_ADDR - if set, add to SIZEOF_HEADERS to set
+ #		start address of shared library.
+ #	INPUT_FILES - INPUT command of files to always include
+ #	WRITABLE_RODATA - if set, the .rodata section should be writable
+ #	INIT_START, INIT_END -  statements just before and just after
+ # 	combination of .init sections.
+ #	FINI_START, FINI_END - statements just before and just after
+ # 	combination of .fini sections.
+ #	STACK_ADDR - start of a .stack section.
+ #	OTHER_END_SYMBOLS - symbols to place right at the end of the script.
+ #
+ # When adding sections, do note that the names of some sections are used
+ # when specifying the start address of the next.
+ #
+ 
+ #  Many sections come in three flavours.  There is the 'real' section,
+ #  like ".data".  Then there are the per-procedure or per-variable
+ #  sections, generated by -ffunction-sections and -fdata-sections in GCC,
+ #  and useful for --gc-sections, which for a variable "foo" might be
+ #  ".data.foo".  Then there are the linkonce sections, for which the linker
+ #  eliminates duplicates, which are named like ".gnu.linkonce.d.foo".
+ #  The exact correspondences are:
+ #
+ #  Section	Linkonce section
+ #  .text	.gnu.linkonce.t.foo
+ #  .rodata	.gnu.linkonce.r.foo
+ #  .data	.gnu.linkonce.d.foo
+ #  .bss		.gnu.linkonce.b.foo
+ #  .sdata	.gnu.linkonce.s.foo
+ #  .sbss	.gnu.linkonce.sb.foo
+ #  .sdata2	.gnu.linkonce.s2.foo
+ #  .sbss2	.gnu.linkonce.sb2.foo
+ #  .debug_info	.gnu.linkonce.wi.foo
+ #  .tdata	.gnu.linkonce.td.foo
+ #  .tbss	.gnu.linkonce.tb.foo
+ #
+ #  Each of these can also have corresponding .rel.* and .rela.* sections.
+ 
+ test -z "$ENTRY" && ENTRY=_start
+ test -z "${BIG_OUTPUT_FORMAT}" && BIG_OUTPUT_FORMAT=${OUTPUT_FORMAT}
+ test -z "${LITTLE_OUTPUT_FORMAT}" && LITTLE_OUTPUT_FORMAT=${OUTPUT_FORMAT}
+ if [ -z "$MACHINE" ]; then OUTPUT_ARCH=${ARCH}; else OUTPUT_ARCH=${ARCH}:${MACHINE}; fi
+ test -z "${ELFSIZE}" && ELFSIZE=32
+ test -z "${ALIGNMENT}" && ALIGNMENT="${ELFSIZE} / 8"
+ test "$LD_FLAG" = "N" && DATA_ADDR=.
+ test -n "$CREATE_SHLIB$CREATE_PIE" && test -n "$SHLIB_DATA_ADDR" && COMMONPAGESIZE=""
+ test -z "$CREATE_SHLIB$CREATE_PIE" && test -n "$DATA_ADDR" && COMMONPAGESIZE=""
+ DATA_SEGMENT_ALIGN="ALIGN(${SEGMENT_SIZE}) + (. & (${MAXPAGESIZE} - 1))"
+ DATA_SEGMENT_END=""
+ if test -n "${COMMONPAGESIZE}"; then
+   DATA_SEGMENT_ALIGN="ALIGN (${SEGMENT_SIZE}) - ((${MAXPAGESIZE} - .) & (${MAXPAGESIZE} - 1)); . = DATA_SEGMENT_ALIGN (${MAXPAGESIZE}, ${COMMONPAGESIZE})"
+   DATA_SEGMENT_END=". = DATA_SEGMENT_END (.);"
+ fi
+  INTERP=".interp    ALIGN(4) : { *(.interp) }"
+     PLT=".plt            : { *(.plt) } :dynamic :dyn"
+ DYNAMIC=".dynamic        : { *(.dynamic) } :dynamic :dyn"
+  RODATA=".rodata    ALIGN(4) : { *(.rodata${RELOCATING+ .rodata.* .gnu.linkonce.r.*}) }"
+ STACKNOTE="/DISCARD/ : { *(.note.GNU-stack)  *(.directive) }"
+ test -z "$GOT" && GOT=".got          ${RELOCATING-0} : { *(.got.plt) *(.got) } :dynamic :dyn"
+ CTOR=".ctors     ALIGN(4) : 
+   {
+     ${CONSTRUCTING+${CTOR_START}}
+     /* gcc uses crtbegin.o to find the start of
+        the constructors, so we make sure it is
+        first.  Because this is a wildcard, it
+        doesn't matter if the user does not
+        actually link against crtbegin.o; the
+        linker won't look for a file to match a
+        wildcard.  The wildcard also means that it
+        doesn't matter which directory crtbegin.o
+        is in.  */
+ 
+     KEEP (*crtbegin*.o(.ctors))
+ 
+     /* We don't want to include the .ctor section from
+        from the crtend.o file until after the sorted ctors.
+        The .ctor section from the crtend file contains the
+        end of ctors marker and it must be last */
+ 
+     KEEP (*(EXCLUDE_FILE (*crtend*.o $OTHER_EXCLUDE_FILES) .ctors))
+     KEEP (*(SORT(.ctors.*)))
+     KEEP (*(.ctors))
+     ${CONSTRUCTING+${CTOR_END}}
+   } :text"
+ DTOR=".dtors        ALIGN(4) :
+   {
+     ${CONSTRUCTING+${DTOR_START}}
+     KEEP (*crtbegin*.o(.dtors))
+     KEEP (*(EXCLUDE_FILE (*crtend*.o $OTHER_EXCLUDE_FILES) .dtors))
+     KEEP (*(SORT(.dtors.*)))
+     KEEP (*(.dtors))
+     ${CONSTRUCTING+${DTOR_END}}
+   } :text"
+ STACK="  .stack        ${RELOCATING-0}${RELOCATING+${STACK_ADDR}} :
+   {
+     ${RELOCATING+_stack = .;}
+     *(.stack)
+   } :data"
+ 
+ # if this is for an embedded system, don't add SIZEOF_HEADERS.
+ if [ -z "$EMBEDDED" ]; then
+    test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR} + SIZEOF_HEADERS"
+ else
+    test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR}"
+ fi
+ 
+ cat <<EOF
+ OUTPUT_FORMAT("${OUTPUT_FORMAT}", "${BIG_OUTPUT_FORMAT}",
+ 	      "${LITTLE_OUTPUT_FORMAT}")
+ OUTPUT_ARCH(${OUTPUT_ARCH})
+ ENTRY(${ENTRY})
+ 
+ ${RELOCATING+${LIB_SEARCH_DIRS}}
+ ${RELOCATING+/* Do we need any of these for elf?
+    __DYNAMIC = 0; ${STACKZERO+${STACKZERO}} ${SHLIB_PATH+${SHLIB_PATH}}  */}
+ ${RELOCATING+${EXECUTABLE_SYMBOLS}}
+ ${RELOCATING+${INPUT_FILES}}
+ ${RELOCATING- /* For some reason, the Solaris linker makes bad executables
+   if gld -r is used and the intermediate file has sections starting
+   at non-zero addresses.  Could be a Solaris ld bug, could be a GNU ld
+   bug.  But for now assigning the zero vmas works.  */}
+ 
+ PHDRS
+ {
+   headers PT_PHDR PHDRS ;
+   text    PT_LOAD ;
+   data    PT_LOAD ;
+   dyn     PT_LOAD FLAGS (0) ;
+   dynamic PT_DYNAMIC ;
+ }
+ 
+ SECTIONS
+ {
+   /* Read-only sections, merged into text segment: */
+   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+. = ${TEXT_BASE_ADDRESS};}}}
+   ${CREATE_SHLIB+${RELOCATING+. = ${SHLIB_TEXT_START_ADDR:-0};}}
+   ${CREATE_PIE+${RELOCATING+. = ${SHLIB_TEXT_START_ADDR:-0};}}
+   ${CREATE_SHLIB-${INTERP}}
+   
+   ${INITIAL_READONLY_SECTIONS}
+ 
+   .init ALIGN(4) : 
+   { 
+     ${RELOCATING+${INIT_START}}
+     KEEP (*(.init))
+     ${RELOCATING+${INIT_END}}
+   } :text =${NOP-0}
+ 
+   .text ALIGN(4) :
+   {
+     ${RELOCATING+${TEXT_START_SYMBOLS}}
+     *(.text .stub${RELOCATING+ .text.* .gnu.linkonce.t.*})
+     /* .gnu.warning sections are handled specially by elf32.em.  */
+     *(.gnu.warning)
+     ${RELOCATING+${OTHER_TEXT_SECTIONS}}
+   } =${NOP-0}
+   
+   ${RELOCATING+${CTOR}}
+   ${RELOCATING+${DTOR}}
+   
+   .fini ALIGN(4) :
+   {
+     ${RELOCATING+${FINI_START}}
+     KEEP (*(.fini))
+     ${RELOCATING+${FINI_END}}
+   } =${NOP-0}
+   
+   ${RELOCATING+PROVIDE (__etext = .);}
+   ${RELOCATING+PROVIDE (_etext = .);}
+   ${RELOCATING+PROVIDE (etext = .);}
+   
+   ${WRITABLE_RODATA-${RODATA}}
+   .rodata1 ALIGN(4) : { *(.rodata1) }
+   
+   ExportTable  ALIGN(4) : { KEEP (*(ExportTable)) }
+   .eh_frame_hdr ALIGN(4) : { *(.eh_frame_hdr) } :text
+ 
+   /* Adjust the address for the data segment.  We want to adjust up to
+      the same address within the page on the next page up.  */
+   . = ALIGN(128) + (. & (128 - 1));
+   /* Ensure the __preinit_array_start label is properly aligned.  We
+      could instead move the label definition inside the section, but
+      the linker would then create the section even if it turns out to
+      be empty, which isn't pretty.  */
+   ${RELOCATING+. = ALIGN(${ALIGNMENT});}
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_start = .);}}
+   .preinit_array   ${RELOCATING-0} : { *(.preinit_array) }
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_end = .);}}
+ 
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_start = .);}}
+   .init_array   ${RELOCATING-0} : { *(.init_array) }
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_end = .);}}
+ 
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__fini_array_start = .);}}
+   .fini_array   ${RELOCATING-0} : { *(.fini_array) }
+   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__fini_array_end = .);}}
+ 
+   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+. = ${DATA_ADDR-${DATA_SEGMENT_ALIGN}};}}}
+   ${CREATE_SHLIB+${RELOCATING+. = ${SHLIB_DATA_ADDR-${DATA_SEGMENT_ALIGN}};}}
+   ${CREATE_PIE+${RELOCATING+. = ${SHLIB_DATA_ADDR-${DATA_SEGMENT_ALIGN}};}}
+ 
+   .data  ALIGN(4) :
+   {
+     ${RELOCATING+${DATA_START_SYMBOLS}}
+     *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*})
+     ${CONSTRUCTING+SORT(CONSTRUCTORS)}
+   } :data
+   
+   .data1            ALIGN(4) : { *(.data1) } :data
+   .tdata	    ALIGN(4) : { *(.tdata${RELOCATING+ .tdata.* .gnu.linkonce.td.*}) } :data
+   .tbss		    ALIGN(4) : { *(.tbss${RELOCATING+ .tbss.* .gnu.linkonce.tb.*})${RELOCATING+ *(.tcommon)} } :data
+   .eh_frame         ALIGN(4) : { KEEP (*(.eh_frame)) } :data
+   .gcc_except_table ALIGN(4) : { *(.gcc_except_table) } :data
+   ${WRITABLE_RODATA+${RODATA}}
+   ${OTHER_READWRITE_SECTIONS}
+   ${SDATA}
+   ${OTHER_SDATA_SECTIONS}
+   ${RELOCATING+_edata = .;}
+   ${RELOCATING+PROVIDE (edata = .);}
+   ${RELOCATING+__bss_start = .;}
+   ${RELOCATING+${OTHER_BSS_SYMBOLS}}
+   ${BSS_PLT+${PLT}}
+   .bss  ALIGN(4) :
+   {
+    *(.dynbss)
+    *(.bss${RELOCATING+ .bss.* .gnu.linkonce.b.*})
+    *(COMMON)
+    /* Align here to ensure that the .bss section occupies space up to
+       _end.  Align after .bss to ensure correct alignment even if the
+       .bss section disappears because there are no input sections.  */
+    ${RELOCATING+. = ALIGN(${ALIGNMENT});}
+   } :data
+   ${OTHER_BSS_SECTIONS}
+   ${RELOCATING+. = ALIGN(${ALIGNMENT});}
+   ${RELOCATING+_end = .;}
+   ${RELOCATING+${OTHER_BSS_END_SYMBOLS}}
+   ${RELOCATING+PROVIDE (end = .);}
+   ${RELOCATING+${DATA_SEGMENT_END}}
+ 
+   ${TEXT_DYNAMIC-${DYNAMIC}}
+   ${TEXT_DYNAMIC+${DYNAMIC}}
+   .hash         ${RELOCATING-0} : { *(.hash) } :dynamic :dyn
+   .dynsym       ${RELOCATING-0} : { *(.dynsym) } :dynamic :dyn
+   .dynstr       ${RELOCATING-0} : { *(.dynstr) } :dynamic :dyn
+   ${DATA_PLT-${BSS_PLT-${PLT}}}
+   .got.plt	  : { *(.got.plt) } :dynamic :dyn
+   .gnu.version  ${RELOCATING-0} : { *(.gnu.version) }
+   .gnu.version_d ${RELOCATING-0}: { *(.gnu.version_d) }
+   .gnu.version_r ${RELOCATING-0}: { *(.gnu.version_r) }
+ EOF
+ if [ "x$COMBRELOC" = x ]; then
+   COMBRELOCCAT=cat
+ else
+   COMBRELOCCAT="cat > $COMBRELOC"
+ fi
+ eval $COMBRELOCCAT <<EOF
+   .rel.init     ${RELOCATING-0} : { *(.rel.init) }
+   .rela.init    ${RELOCATING-0} : { *(.rela.init) }
+   .rel.text     ${RELOCATING-0} : { *(.rel.text${RELOCATING+ .rel.text.* .rel.gnu.linkonce.t.*}) }
+   .rela.text    ${RELOCATING-0} : { *(.rela.text${RELOCATING+ .rela.text.* .rela.gnu.linkonce.t.*}) }
+   .rel.fini     ${RELOCATING-0} : { *(.rel.fini) }
+   .rela.fini    ${RELOCATING-0} : { *(.rela.fini) }
+   .rel.rodata   ${RELOCATING-0} : { *(.rel.rodata${RELOCATING+ .rel.rodata.* .rel.gnu.linkonce.r.*}) }
+   .rela.rodata  ${RELOCATING-0} : { *(.rela.rodata${RELOCATING+ .rela.rodata.* .rela.gnu.linkonce.r.*}) }
+   ${OTHER_READONLY_RELOC_SECTIONS}
+   .rel.data     ${RELOCATING-0} : { *(.rel.data${RELOCATING+ .rel.data.* .rel.gnu.linkonce.d.*}) }
+   .rela.data    ${RELOCATING-0} : { *(.rela.data${RELOCATING+ .rela.data.* .rela.gnu.linkonce.d.*}) }
+   .rel.tdata	${RELOCATING-0} : { *(.rel.tdata${RELOCATING+ .rel.tdata.* .rel.gnu.linkonce.td.*}) }
+   .rela.tdata	${RELOCATING-0} : { *(.rela.tdata${RELOCATING+ .rela.tdata.* .rela.gnu.linkonce.td.*}) }
+   .rel.tbss	${RELOCATING-0} : { *(.rel.tbss${RELOCATING+ .rel.tbss.* .rel.gnu.linkonce.tb.*}) }
+   .rela.tbss	${RELOCATING-0} : { *(.rela.tbss${RELOCATING+ .rela.tbss.* .rela.gnu.linkonce.tb.*}) }
+   .rel.ctors    ${RELOCATING-0} : { *(.rel.ctors) }
+   .rela.ctors   ${RELOCATING-0} : { *(.rela.ctors) }
+   .rel.dtors    ${RELOCATING-0} : { *(.rel.dtors) }
+   .rela.dtors   ${RELOCATING-0} : { *(.rela.dtors) }
+   .rel.got      ${RELOCATING-0} : { *(.rel.got) }
+   .rela.got     ${RELOCATING-0} : { *(.rela.got) }
+   ${OTHER_GOT_RELOC_SECTIONS}
+   .rel.bss      ${RELOCATING-0} : { *(.rel.bss${RELOCATING+ .rel.bss.* .rel.gnu.linkonce.b.*}) }
+   .rela.bss     ${RELOCATING-0} : { *(.rela.bss${RELOCATING+ .rela.bss.* .rela.gnu.linkonce.b.*}) }
+ EOF
+ if [ -n "$COMBRELOC" ]; then
+ cat <<EOF
+   .rel.dyn      ${RELOCATING-0} :
+     {
+ EOF
+ sed -e '/^[ 	]*[{}][ 	]*$/d;/:[ 	]*$/d;/\.rela\./d;s/^.*: { *\(.*\)}$/      \1/' $COMBRELOC
+ cat <<EOF
+     }
+   .rela.dyn     ${RELOCATING-0} :
+     {
+ EOF
+ sed -e '/^[ 	]*[{}][ 	]*$/d;/:[ 	]*$/d;/\.rel\./d;s/^.*: { *\(.*\)}/      \1/' $COMBRELOC
+ cat <<EOF
+     }
+ EOF
+ fi
+ cat <<EOF
+   .rel.plt      ${RELOCATING-0} : { *(.rel.plt) }
+   .rela.plt     ${RELOCATING-0} : { *(.rela.plt) }
+   ${OTHER_PLT_RELOC_SECTIONS}
+ 
+ 
+   /* Stabs debugging sections.  */
+   .stab          0 : { *(.stab) }
+   .stabstr       0 : { *(.stabstr) }
+   .stab.excl     0 : { *(.stab.excl) }
+   .stab.exclstr  0 : { *(.stab.exclstr) }
+   .stab.index    0 : { *(.stab.index) }
+   .stab.indexstr 0 : { *(.stab.indexstr) }
+ 
+   .comment       0 : { *(.comment) }
+ 
+   /* DWARF debug sections.
+      Symbols in the DWARF debugging sections are relative to the beginning
+      of the section so we begin them at 0.  */
+ 
+   /* DWARF 1 */
+   .debug          0 : { *(.debug) }
+   .line           0 : { *(.line) }
+ 
+   /* GNU DWARF 1 extensions */
+   .debug_srcinfo  0 : { *(.debug_srcinfo) }
+   .debug_sfnames  0 : { *(.debug_sfnames) }
+ 
+   /* DWARF 1.1 and DWARF 2 */
+   .debug_aranges  0 : { *(.debug_aranges) }
+   .debug_pubnames 0 : { *(.debug_pubnames) }
+ 
+   /* DWARF 2 */
+   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
+   .debug_abbrev   0 : { *(.debug_abbrev) }
+   .debug_line     0 : { *(.debug_line) }
+   .debug_frame    0 : { *(.debug_frame) }
+   .debug_str      0 : { *(.debug_str) }
+   .debug_loc      0 : { *(.debug_loc) }
+   .debug_macinfo  0 : { *(.debug_macinfo) }
+ 
+   /* SGI/MIPS DWARF 2 extensions */
+   .debug_weaknames 0 : { *(.debug_weaknames) }
+   .debug_funcnames 0 : { *(.debug_funcnames) }
+   .debug_typenames 0 : { *(.debug_typenames) }
+   .debug_varnames  0 : { *(.debug_varnames) }
+ 
+   ${STACK_ADDR+${STACK}}
+   ${OTHER_SECTIONS}
+   ${RELOCATING+${OTHER_END_SYMBOLS}}
+   ${RELOCATING+${STACKNOTE}}
+ }
+ EOF

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]