PR binutils/609
authorNick Clifton <nickc@redhat.com>
Mon, 10 Jan 2005 15:45:00 +0000 (15:45 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 10 Jan 2005 15:45:00 +0000 (15:45 +0000)
* 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
ld/ldmisc.c

index 3cd3b6dff9c6dbfd83f4a0db13e67e243fcb4334..65ddebb22c4e3fab4320943355c6609cb96f7274 100644 (file)
@@ -1,3 +1,12 @@
+2005-01-10  Nick Clifton  <nickc@redhat.com>
+
+       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  <gschafer@zip.com.au>
 
        * configure.host (linux targets): Use "${CC} -dumpspecs" instead
index cc9131e424626dffddef79aac5e2f6b1bddbe1c5..3189a8056c08eb77fbbb85bcb60f8ea8392a536d 100644 (file)
@@ -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);
 }
 \f
This page took 0.028127 seconds and 4 git commands to generate.