From 59ef2528a2e8266cf600f1b741fad7f0edc43496 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 10 Jan 2005 15:45:00 +0000 Subject: PR binutils/609 * ldmisc.c (vfinfo): Add an extra argument: is_warning. Use this to determine whether config.make_executable should be set to FALSE in conjunction with config.fatal_warnings. (info_msg, minfo, lfinof): Pass FALSE as the extra argument. (einfo): Pass TRUE as the extra argument. --- ld/ChangeLog | 9 +++++++++ ld/ldmisc.c | 14 +++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) (limited to 'ld') diff --git a/ld/ChangeLog b/ld/ChangeLog index 3cd3b6d..65ddebb 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,12 @@ +2005-01-10 Nick Clifton + + PR binutils/609 + * ldmisc.c (vfinfo): Add an extra argument: is_warning. Use this + to determine whether config.make_executable should be set to FALSE in + conjunction with config.fatal_warnings. + (info_msg, minfo, lfinof): Pass FALSE as the extra argument. + (einfo): Pass TRUE as the extra argument. + 2005-01-10 Greg Schaffer * configure.host (linux targets): Use "${CC} -dumpspecs" instead diff --git a/ld/ldmisc.c b/ld/ldmisc.c index cc9131e..3189a80 100644 --- a/ld/ldmisc.c +++ b/ld/ldmisc.c @@ -1,6 +1,6 @@ /* ldmisc.c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2002, 2003, 2004 + 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Written by Steve Chamberlain of Cygnus Support. @@ -61,7 +61,7 @@ */ static void -vfinfo (FILE *fp, const char *fmt, va_list arg) +vfinfo (FILE *fp, const char *fmt, va_list arg, bfd_boolean is_warning) { bfd_boolean fatal = FALSE; @@ -398,7 +398,7 @@ vfinfo (FILE *fp, const char *fmt, va_list arg) } } - if (config.fatal_warnings) + if (is_warning && config.fatal_warnings) config.make_executable = FALSE; if (fatal) @@ -458,7 +458,7 @@ info_msg (const char *fmt, ...) va_list arg; va_start (arg, fmt); - vfinfo (stdout, fmt, arg); + vfinfo (stdout, fmt, arg, FALSE); va_end (arg); } @@ -470,7 +470,7 @@ einfo (const char *fmt, ...) va_list arg; va_start (arg, fmt); - vfinfo (stderr, fmt, arg); + vfinfo (stderr, fmt, arg, TRUE); va_end (arg); } @@ -488,7 +488,7 @@ minfo (const char *fmt, ...) va_list arg; va_start (arg, fmt); - vfinfo (config.map_file, fmt, arg); + vfinfo (config.map_file, fmt, arg, FALSE); va_end (arg); } @@ -498,7 +498,7 @@ lfinfo (FILE *file, const char *fmt, ...) va_list arg; va_start (arg, fmt); - vfinfo (file, fmt, arg); + vfinfo (file, fmt, arg, FALSE); va_end (arg); } -- cgit v1.1