aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2006-06-22 16:25:36 +0000
committerNick Clifton <nickc@redhat.com>2006-06-22 16:25:36 +0000
commitb952b98f2769db3cad817fa757e30b93cb0e2158 (patch)
tree23249ac4c57d7718e7053a301f51a2831e40a7a6 /ld
parent01f9e8fab8e45337f0451f7edbd03cfe0381999a (diff)
downloadbinutils-b952b98f2769db3cad817fa757e30b93cb0e2158.zip
binutils-b952b98f2769db3cad817fa757e30b93cb0e2158.tar.gz
binutils-b952b98f2769db3cad817fa757e30b93cb0e2158.tar.bz2
PR ld/2757
* emultempl/pe.em (gld_$_after_open): When reporting non PE format output files mention the file name and the fact that it is an output file.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog7
-rw-r--r--ld/emultempl/pe.em2
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 7f03312..ae6b0ea 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-22 Nick Clifton <nickc@redhat.com>
+
+ PR ld/2757
+ * emultempl/pe.em (gld_$_after_open): When reporting non PE format
+ output files mention the file name and the fact that it is an
+ output file.
+
2006-06-22 Danny Smith <dannysmith@users.sourceforge.net>
* emultempl/pe.em (gld_${EMULATION_NAME}_open_dynamic_archive):
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em
index 4c4a186..b297069 100644
--- a/ld/emultempl/pe.em
+++ b/ld/emultempl/pe.em
@@ -983,7 +983,7 @@ gld_${EMULATION_NAME}_after_open (void)
including an internal BFD header. */
if (coff_data (output_bfd) == NULL || coff_data (output_bfd)->pe == 0)
- einfo (_("%F%P: PE operations on non PE file.\n"));
+ einfo (_("%F%P: cannot perform PE operations on non PE output file '%B'.\n"), output_bfd);
pe_data (output_bfd)->pe_opthdr = pe;
pe_data (output_bfd)->dll = init[DLLOFF].value;