mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-13 02:45:02 +08:00
* 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.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
/* ldmisc.c
|
||||
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
||||
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011
|
||||
Free Software Foundation, Inc.
|
||||
Written by Steve Chamberlain of Cygnus Support.
|
||||
|
||||
@ -440,9 +440,11 @@ einfo (const char *fmt, ...)
|
||||
{
|
||||
va_list arg;
|
||||
|
||||
fflush (stdout);
|
||||
va_start (arg, fmt);
|
||||
vfinfo (stderr, fmt, arg, TRUE);
|
||||
va_end (arg);
|
||||
fflush (stderr);
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user