g77spec.c (lang_specific_driver): Print out egcs version info first...

Sat Jun 13 03:13:18 1998  Craig Burley  <burley@gnu.org>
	* g77spec.c (lang_specific_driver): Print out egcs
	version info first, to be compatible with what some
	test facilities expect.

From-SVN: r20508
This commit is contained in:
Craig Burley 1998-06-15 03:54:39 -04:00 committed by Dave Love
parent f30bc2e7f5
commit 3f1e429275
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Sat Jun 13 03:13:18 1998 Craig Burley <burley@gnu.org>
* g77spec.c (lang_specific_driver): Print out egcs
version info first, to be compatible with what some
test facilities expect.
Wed Jun 10 13:17:32 1998 Dave Brolley <brolley@cygnus.com>
* top.h (ffe_decode_option): New argc/argv interface.

View File

@ -107,6 +107,8 @@ static char **g77_newargv;
extern char *xmalloc PROTO((size_t));
extern char *version_string;
/* --- This comes from gcc.c (2.8.1) verbatim: */
/* This defines which switch letters take arguments. */
@ -375,7 +377,8 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
case OPTION_v:
if (! verbose)
fprintf (stderr, "g77 version %s\n", ffe_version_string);
fprintf (stderr, "g77 version %s (from FSF-g77 version %s)\n",
version_string, ffe_version_string);
verbose = 1;
break;

View File

@ -1 +1 @@
char *ffe_version_string = "egcs-0.5.23";
char *ffe_version_string = "0.5.23";