m32r-linux-ld support for position independent executables
authorNick Clifton <nickc@redhat.com>
Mon, 4 Jul 2005 13:54:36 +0000 (13:54 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 4 Jul 2005 13:54:36 +0000 (13:54 +0000)
bfd/ChangeLog
bfd/elf32-m32r.c
ld/ChangeLog
ld/emulparams/m32relf_linux.sh

index 87d7ee4c63200d34f215566c2399129c54f468eb..91d214fd7b8c76565656a87f122c39b489fc3bd1 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-04  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
+
+       * elf32-m32r.c (m32r_elf_size_dynamic_sections): Use
+       info->executable instead of !info->shared where appropriate.
+
 2005-07-04  Alan Modra  <amodra@bigpond.net.au>
 
        PR 1042
index f798088f0d869eca0a8a7bbb69dbde0326e14504..6972ad30ca4083d141f15260abbf32c8d947a447 100644 (file)
@@ -2178,7 +2178,7 @@ m32r_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
   if (htab->root.dynamic_sections_created)
     {
       /* Set the contents of the .interp section to the interpreter.  */
-      if (! info->shared)
+      if (info->executable)
        {
          s = bfd_get_section_by_name (dynobj, ".interp");
          BFD_ASSERT (s != NULL);
@@ -2317,7 +2317,7 @@ m32r_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
 #define add_dynamic_entry(TAG, VAL) \
   _bfd_elf_add_dynamic_entry (info, TAG, VAL)
 
-      if (! info->shared)
+     if (info->executable)
        {
          if (! add_dynamic_entry (DT_DEBUG, 0))
            return FALSE;
index 9f6122c1a4a700b2004f0e1eb630c6f3691001fe..e94511a7249555db0ec0bf65e80f5424e353ecd7 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-04  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
+
+       * emulparams/m32relf_linux.sh (GENERATE_PIE_SCRIPT): Set to yes.
+
 2005-07-04  Aurelien Jarno  <aurel32@debian.org>
 
        * emultempl/elf32.em: Enable use of ld.so.conf for *-*-k*bsd-*.
index 814c91a792e5927c4d169eb79dd8dcbe07215db6..be2ad23240cae0873c6ff9f34b852fea218753b9 100644 (file)
@@ -11,3 +11,4 @@ MAXPAGESIZE=0x1000
 # top of simulator memory (32MB).
 OTHER_RELOCATING_SECTIONS='PROVIDE (_stack = 0x2000000);'
 GENERATE_SHLIB_SCRIPT=yes
+GENERATE_PIE_SCRIPT=yes