diff options
author | Alan Modra <amodra@gmail.com> | 2011-01-14 12:37:17 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-01-14 12:37:17 +0000 |
commit | e922bcabdffb3f36677c587e5ff04e90488837b6 (patch) | |
tree | f0be6e42e7aef43d6d5b02b47d1e10db511287e5 /ld/emultempl | |
parent | 4a97a0e54cba4caa5d994260f9c8ac9548628790 (diff) | |
download | gdb-e922bcabdffb3f36677c587e5ff04e90488837b6.zip gdb-e922bcabdffb3f36677c587e5ff04e90488837b6.tar.gz gdb-e922bcabdffb3f36677c587e5ff04e90488837b6.tar.bz2 |
* 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.em | 6 | ||||
-rw-r--r-- | ld/emultempl/pe.em | 7 | ||||
-rw-r--r-- | ld/emultempl/pep.em | 7 | ||||
-rw-r--r-- | ld/emultempl/ppc64elf.em | 4 | ||||
-rw-r--r-- | ld/emultempl/xtensaelf.em | 2 |
5 files changed, 8 insertions, 18 deletions
diff --git a/ld/emultempl/beos.em b/ld/emultempl/beos.em index 708a2a9..6dc6375 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 0231fa7..a3e4cdd 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 56687d6..a307c14 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 cb8e784..0c99592 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 ed015a2..b37a67b 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; } |