summaryrefslogtreecommitdiff
path: root/ld/emultempl
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2011-01-14 12:37:17 +0000
committerAlan Modra <amodra@gmail.com>2011-01-14 12:37:17 +0000
commite922bcabdffb3f36677c587e5ff04e90488837b6 (patch)
treef0be6e42e7aef43d6d5b02b47d1e10db511287e5 /ld/emultempl
parent4a97a0e54cba4caa5d994260f9c8ac9548628790 (diff)
downloadbinutils-gdb-e922bcabdffb3f36677c587e5ff04e90488837b6.tar.gz
* ldmain.c (main): Flush stdout before and stderr after printing
message. * ldmisc.c (einfo): Similarly. * plugin.c (message): Likewise. * emultempl/ppc64elf.em: Likewise. * emultempl/xtensaelf.em: Likewise. * emulparams/elf32mcore.sh: Use einfo rather than printf. * emultempl/beos.em: Likewise. * emultempl/pe.em: Likewise. * emultempl/pep.em: Likewise.
Diffstat (limited to 'ld/emultempl')
-rw-r--r--ld/emultempl/beos.em6
-rw-r--r--ld/emultempl/pe.em7
-rw-r--r--ld/emultempl/pep.em7
-rw-r--r--ld/emultempl/ppc64elf.em4
-rw-r--r--ld/emultempl/xtensaelf.em2
5 files changed, 8 insertions, 18 deletions
diff --git a/ld/emultempl/beos.em b/ld/emultempl/beos.em
index 708a2a9d3b7..6dc63754160 100644
--- a/ld/emultempl/beos.em
+++ b/ld/emultempl/beos.em
@@ -270,11 +270,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
case OPTION_BASE_FILE:
link_info.base_file = fopen (optarg, FOPEN_WB);
if (link_info.base_file == NULL)
- {
- fprintf (stderr, "%s: Can't open base file %s\n",
- program_name, optarg);
- xexit (1);
- }
+ einfo (_("%F%P: cannot open base file %s\n"), optarg);
break;
/* PE options */
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em
index 0231fa77a7a..a3e4cddabf5 100644
--- a/ld/emultempl/pe.em
+++ b/ld/emultempl/pe.em
@@ -688,12 +688,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
case OPTION_BASE_FILE:
link_info.base_file = fopen (optarg, FOPEN_WB);
if (link_info.base_file == NULL)
- {
- /* xgettext:c-format */
- fprintf (stderr, _("%s: Can't open base file %s\n"),
- program_name, optarg);
- xexit (1);
- }
+ einfo (_("%F%P: cannot open base file %s\n"), optarg);
break;
/* PE options. */
diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em
index 56687d673ea..a307c143500 100644
--- a/ld/emultempl/pep.em
+++ b/ld/emultempl/pep.em
@@ -611,12 +611,7 @@ gld${EMULATION_NAME}_handle_option (int optc)
case OPTION_BASE_FILE:
link_info.base_file = fopen (optarg, FOPEN_WB);
if (link_info.base_file == NULL)
- {
- /* xgettext:c-format */
- fprintf (stderr, _("%s: Can't open base file %s\n"),
- program_name, optarg);
- xexit (1);
- }
+ einfo (_("%F%P: cannot open base file %s\n"), optarg);
break;
/* PE options. */
diff --git a/ld/emultempl/ppc64elf.em b/ld/emultempl/ppc64elf.em
index cb8e7841e8d..0c995920f4e 100644
--- a/ld/emultempl/ppc64elf.em
+++ b/ld/emultempl/ppc64elf.em
@@ -1,5 +1,5 @@
# This shell script emits a C file. -*- C -*-
-# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
# Free Software Foundation, Inc.
#
# This file is part of the GNU Binutils.
@@ -545,6 +545,7 @@ gld${EMULATION_NAME}_finish (void)
config.stats ? &msg : NULL))
einfo ("%X%P: can not build stubs: %E\n");
+ fflush (stdout);
for (line = msg; line != NULL; line = endline)
{
endline = strchr (line, '\n');
@@ -552,6 +553,7 @@ gld${EMULATION_NAME}_finish (void)
*endline++ = '\0';
fprintf (stderr, "%s: %s\n", program_name, line);
}
+ fflush (stderr);
if (msg != NULL)
free (msg);
}
diff --git a/ld/emultempl/xtensaelf.em b/ld/emultempl/xtensaelf.em
index ed015a23c6a..b37a67b2fe7 100644
--- a/ld/emultempl/xtensaelf.em
+++ b/ld/emultempl/xtensaelf.em
@@ -1817,8 +1817,10 @@ ld_local_file_relocations_fit (lang_statement_union_type *statement,
bfd_vma target_addr = e->tgt->output_offset & ~3;
if (l32r_addr < target_addr)
{
+ fflush (stdout);
fprintf (stderr, "Warning: "
"l32r target section before l32r\n");
+ fflush (stderr);
return FALSE;
}