From 57cb418a935f699a59f534e9d92223a9f1792f9d Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Fri, 11 Jun 1993 22:23:17 +0000 Subject: [PATCH] revised format for config info --- gdb/ChangeLog | 5 +++++ gdb/main.c | 19 ++++++++++++++++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 473b24c2ef..6025cfbbc2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 11 15:19:59 1993 K. Richard Pixley (rich@cygnus.com) + + * main.c (main): back to two periods for elipse. + (print_gdb_version): revised format for configuration info. + Fri Jun 11 10:17:41 1993 Jim Kingdon (kingdon@cygnus.com) * dbxread.c (process_one_symbol): Rather than having diff --git a/gdb/main.c b/gdb/main.c index 9706105ac4..9c274bb82f 100644 --- a/gdb/main.c +++ b/gdb/main.c @@ -178,6 +178,14 @@ static int inhibit_gdbinit = 0; extern char *version; +/* Canonical host name as a string. */ + +extern char *host_canonical; + +/* Canonical target name as a string. */ + +extern char *target_canonical; + /* Message to be printed before the error message, when an error occurs. */ extern char *error_pre_print; @@ -291,7 +299,6 @@ static char dirbuf[1024]; void (*window_hook) PARAMS ((FILE *, char *)); -extern int frame_file_full_name; extern int mapped_symbol_files; extern int readnow_symbol_files; @@ -1894,8 +1901,14 @@ print_gdb_version (stream) FILE *stream; { fprintf_filtered (stream, "\ -GDB %s, Copyright 1993 Free Software Foundation, Inc.", - version); +GDB %s (%s", version, host_canonical); + + if (strcmp(host_canonical, target_canonical)) + fprintf_filtered (stream, " --target %s", target_canonical); + + fprintf_filtered (stream, "), "); + wrap_here(""); + fprintf_filtered (stream, "Copyright 1993 Free Software Foundation, Inc."); } /* ARGSUSED */