Prefix .gnu.warning section messages with "warning: ".
authorNick Clifton <nickc@redhat.com>
Mon, 4 Aug 2003 11:32:52 +0000 (11:32 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 4 Aug 2003 11:32:52 +0000 (11:32 +0000)
bfd/ChangeLog
bfd/elflink.h
ld/ChangeLog
ld/emultempl/elf32.em

index b2686ef969d5d9ee4ee901351b78ee99453f435e..8645db0104383f6e0180c894be5552c72fcb2dba 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-04  Nick Clifton  <nickc@redhat.com>
+
+       * elflink.h (elf_link_add_object_symbols): Prepend "warning: "
+       to messages produced for .gnu.warning.SYMBOL sections.
+
 2003-08-04  Alan Modra  <amodra@bigpond.net.au>
 
        * elfcode.h: Convert to C90, remove unneeded casts and prototypes.
index a2520b1d8084dff70c5034e7e840c997cbff85d0..c0b2468b7d895139acb8906b76d0d96ad94726b6 100644 (file)
@@ -459,6 +459,8 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
            {
              char *msg;
              bfd_size_type sz;
+             bfd_size_type prefix_len;
+             const char * gnu_warning_prefix = _("warning: ");
 
              name += sizeof ".gnu.warning." - 1;
 
@@ -492,14 +494,16 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
                }
 
              sz = bfd_section_size (abfd, s);
-             msg = bfd_alloc (abfd, sz + 1);
+             prefix_len = strlen (gnu_warning_prefix);
+             msg = bfd_alloc (abfd, prefix_len + sz + 1);
              if (msg == NULL)
                goto error_return;
 
-             if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
+             strcpy (msg, gnu_warning_prefix);
+             if (! bfd_get_section_contents (abfd, s, msg + prefix_len, 0, sz))
                goto error_return;
 
-             msg[sz] = '\0';
+             msg[prefix_len + sz] = '\0';
 
              if (! (_bfd_generic_link_add_one_symbol
                     (info, abfd, name, BSF_WARNING, s, 0, msg,
index 326d3b01db2470d09eeaba4d1e5e8efc147bd48c..68e92d63054eacce6e8643badcf6543776519464 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-04  Nick Clifton  <nickc@redhat.com>
+
+       * emultempl/elf32.em (before_allocation): Prepend "warning: "
+       to messages produced for .gnu.warning.SYMBOL sections.
+
 2003-08-04  Alan Modra  <amodra@bigpond.net.au>
 
        * emultempl/elf32.em (output_rel_find): Add "isdyn" param.  Put
index e5fefa977f205dded2ca62f6cd32b81d10412555..dfe4e2d30875ab7e3c4ba854e6c4a15d48121315 100644 (file)
@@ -880,8 +880,10 @@ ${ELF_INTERPRETER_SET_DEFAULT}
       {
        asection *s;
        bfd_size_type sz;
+       bfd_size_type prefix_len;
        char *msg;
        bfd_boolean ret;
+       const char * gnu_warning_prefix = _("warning: ");
 
        if (is->just_syms_flag)
          continue;
@@ -891,11 +893,14 @@ ${ELF_INTERPRETER_SET_DEFAULT}
          continue;
 
        sz = bfd_section_size (is->the_bfd, s);
-       msg = xmalloc ((size_t) sz + 1);
-       if (! bfd_get_section_contents (is->the_bfd, s, msg, (file_ptr) 0, sz))
+       prefix_len = strlen (gnu_warning_prefix);
+       msg = xmalloc ((size_t) (prefix_len + sz + 1));
+       strcpy (msg, gnu_warning_prefix);
+       if (! bfd_get_section_contents (is->the_bfd, s, msg + prefix_len,
+                                       (file_ptr) 0, sz))
          einfo ("%F%B: Can't read contents of section .gnu.warning: %E\n",
                 is->the_bfd);
-       msg[sz] = '\0';
+       msg[prefix_len + sz] = '\0';
        ret = link_info.callbacks->warning (&link_info, msg,
                                            (const char *) NULL,
                                            is->the_bfd, (asection *) NULL,