aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1995-02-02 22:02:20 +0000
committerStan Shebs <shebs@codesourcery.com>1995-02-02 22:02:20 +0000
commit2d1444416ea7f12b15aa34f27d10d3843454b5a9 (patch)
tree518328e0b6ed171eb7bfe18671763edaceb2ac9e
parentb003a2d9ee2a2a0837290d8472137084262b2413 (diff)
downloadgdb-2d1444416ea7f12b15aa34f27d10d3843454b5a9.zip
gdb-2d1444416ea7f12b15aa34f27d10d3843454b5a9.tar.gz
gdb-2d1444416ea7f12b15aa34f27d10d3843454b5a9.tar.bz2
* Makefile.in (VERSION): Bump to 4.13.2.
-rw-r--r--gdb/ChangeLog12
-rw-r--r--gdb/Makefile.in10
2 files changed, 20 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6a000d2..22072bd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,15 @@
+Thu Feb 2 13:58:40 1995 Stan Shebs <shebs@andros.cygnus.com>
+
+ * Makefile.in (VERSION): Bump to 4.13.2.
+
+Thu Feb 2 07:27:56 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ Fix compiler warnings:
+ * remote-e7000.c (printf_e7000debug): Rename to puts_e7000debug
+ and have the caller do the sprintf. Saves us from varargs hell.
+ (normal): Define before use.
+ * remote-e7000.c: Reindent a few things.
+
Wed Feb 1 21:16:42 1995 Per Bothner <bothner@kalessin.cygnus.com>
* f-typeprint.c (f_type_print_varspec_suffix): Print array index
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 4b44005..9c8647c 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -194,7 +194,7 @@ CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(BFD) $(READLINE) $(OPCODES) \
ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
-VERSION = 4.13.1
+VERSION = 4.13.2
DIST=gdb
LINT=/usr/5bin/lint
@@ -291,7 +291,13 @@ CHILL_FOR_TARGET = ` \
t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
fi; \
fi`
-CHILL_LIB = -lchill
+CHILL_LIB = ` \
+ if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
+ echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
+ $${rootme}/../gcc/ch/runtime/libchill.a; \
+ else \
+ echo -lchill; \
+ fi`
# The use of $$(x_FOR_TARGET) reduces the command line length by not
# duplicating the lengthy definition.