From 90494078118f27bf54c8380904079415b26b33f0 Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Wed, 9 Jun 1993 23:22:48 +0000 Subject: [PATCH] put configuration in startup banner --- gdb/ChangeLog | 4 ++++ gdb/Makefile.in | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1a80f63184..776606f926 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ Wed Jun 9 12:56:58 1993 K. Richard Pixley (rich@cygnus.com) + * Makefile.in (version.c): add host and target names to version.c. + * main.c (main): print three periods for the elipse. + (print_gdb_version): also print configuration. + * udi/udiids.h, udi/udip2soc.c, udi/udiphcfg.h, udi/udiphunix.h, udi/udiproc.h, udi/udipt29k.h, udi/udiptcfg.h, udi/udisoc.h, udi/udr.c: Change AMD copyrights to FSF copyleft '93. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2675df52ef..f8771175af 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -590,6 +590,8 @@ depend: $(SOURCES) Makefile.in -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \ -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \ -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \ + -e 's; $(BFD_DEP)/bfd\.h; ../bfd/bfd.h;g' \ + -e 's; $(INCLUDE_DEP)/../bfd/bfd\.h; ../bfd/bfd.h;g' \ -e 's; \./xm.h; xm.h config.status;g' \ -e 's; \./tm.h; tm.h config.status;g' \ -e 's; \./nm.h; nm.h config.status;g' \ @@ -832,6 +834,8 @@ copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk version.c: Makefile echo 'char *version = "$(VERSION)";' >version.c + echo 'char *host_canonical = "$(host_canonical)";' >> version.c + echo 'char *target_canonical = "$(target_canonical)";' >> version.c # c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist # in srcdir, then compiled in target dir to c-exp.tab.o. -- 2.34.1