Pass %E to einfo when bfd_section == NULL
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 5 May 2016 02:41:34 +0000 (19:41 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 5 May 2016 02:41:34 +0000 (19:41 -0700)
Report BFD error When bfd_section == NULL in init_os.

* ldlang.c (init_os): Pass %E to einfo when bfd_section == NULL.

ld/ChangeLog
ld/ldlang.c

index 5fae3c0ecb58bb65dc396d14f0d9a353b76623cb..f1a38c3af89617dbb9ae72046435d874c2335d3f 100644 (file)
@@ -1,3 +1,7 @@
+2016-05-04  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * ldlang.c (init_os): Pass %E to einfo when bfd_section == NULL.
+
 2016-05-04  Maciej W. Rozycki  <macro@imgtec.com>
 
        * testsuite/ld-unique/unique.d: New test.
index 96947da974ba920ee44e5023535ba69962b285a5..1cbba39e988b61ad1cb6d793f20e7af2a656b343 100644 (file)
@@ -2204,7 +2204,7 @@ init_os (lang_output_section_statement_type *s, flagword flags)
                                                         s->name, flags);
   if (s->bfd_section == NULL)
     {
-      einfo (_("%P%F: output format %s cannot represent section called %s\n"),
+      einfo (_("%P%F: output format %s cannot represent section called %s: %E\n"),
             link_info.output_bfd->xvec->name, s->name);
     }
   s->bfd_section->output_section = s->bfd_section;