aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog8
-rw-r--r--bfd/VERSION2
-rw-r--r--binutils/ChangeLog18
-rw-r--r--binutils/Makefile.in21
-rw-r--r--gprof/ChangeLog4
-rw-r--r--ld/ChangeLog12
6 files changed, 60 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f7fe905..c24dfb7 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,11 @@
+Thu Nov 16 03:38:03 1995 Ken Raeburn <raeburn@cygnus.com>
+
+ * VERSION: Updated to cygnus-2.6.
+
+Wed Nov 15 19:30:07 1995 Ken Raeburn <raeburn@cygnus.com>
+
+ * targets.c (m68k4knetbsd_vec): Declare.
+
Wed Nov 15 18:05:52 1995 Ian Lance Taylor <ian@cygnus.com>
* targets.c (bfd_target): Change type of second argument to
diff --git a/bfd/VERSION b/bfd/VERSION
index aa90abd..9ddf6b5 100644
--- a/bfd/VERSION
+++ b/bfd/VERSION
@@ -1 +1 @@
-cygnus-2.5
+cygnus-2.6
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 289df4c..bf7aef0 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,21 @@
+Thu Nov 16 03:39:20 1995 Ken Raeburn <raeburn@cygnus.com>
+
+ Version 2.6 released.
+ * Makefile.in (VERSION): Update to 2.6.
+
+Wed Nov 15 12:14:17 1995 Ian Lance Taylor <ian@cygnus.com>
+
+ * Makefile.in (CC_FOR_TARGET): Define.
+ (check): Pass CC and CFLAGS to runtest.
+
+ * nm.c (display_rel_file): Don't require a DYNAMIC object when
+ dumping the dynamic symbol table.
+
+ * objdump.c (compare_symbols): Sort global symbols before local
+ symbols before debugging symbols.
+ (objdump_print_address): Don't futz around looking for a global
+ symbol with the same value.
+
Tue Nov 14 17:19:11 1995 Ian Lance Taylor <ian@cygnus.com>
* dlltool.c: Use FOPEN_* macros rather than "r" or "w".
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 878d4c9..1a4a8eb 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -74,7 +74,7 @@ LEX_OPTIONS = -I -Cem
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
# Distribution version
-VERSION=cygnus-2.5.3
+VERSION=cygnus-2.6
# Distribution name
DIST_NAME=binutils-${VERSION}
@@ -128,8 +128,6 @@ BFDDIR = $(BASEDIR)/bfd
INCDIR = $(BASEDIR)/include
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
-@target_makefile_fragment@
-
ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
.c.o:
@@ -171,6 +169,21 @@ RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
else echo runtest ; fi`
RUNTESTFLAGS =
+CC_FOR_TARGET = ` \
+ if [ -f $$r/../gcc/xgcc ] ; then \
+ if [ -f $$r/../newlib/Makefile ] ; then \
+ echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
+ else \
+ echo $$r/../gcc/xgcc -B$$r/../gcc/; \
+ fi; \
+ else \
+ if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
+ echo $(CC); \
+ else \
+ echo gcc | sed '$(program_transform_name)'; \
+ fi; \
+ fi`
+
FLAGS_TO_PASS = \
"CC=$(CC)" \
"CFLAGS=$(CFLAGS)" \
@@ -220,7 +233,7 @@ check: site.exp
TCL_LIBRARY=$${srcroot}/../tcl/library ; \
export TCL_LIBRARY ; else true; fi ; \
$(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
- $(RUNTESTFLAGS)
+ $(RUNTESTFLAGS) CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)"
installcheck:
/bin/sh $(srcdir)/sanity.sh $(bindir)
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 56da3a7..009164d 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,7 @@
+Thu Nov 16 03:41:37 1995 Ken Raeburn <raeburn@cygnus.com>
+
+ Version 2.6 released.
+
Wed Nov 8 11:40:04 1995 Ian Lance Taylor <ian@cygnus.com>
* gprof.c (main): Cast getenv return value.
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 333d0d0..f268f83 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,5 +1,17 @@
+Thu Nov 16 03:09:32 1995 Ken Raeburn <raeburn@cygnus.com>
+
+ Version 2.6 released.
+ * ldver.c (ldversion): Update to 2.6.
+
+ * Makefile.in (mostlyclean): Delete ldemul-list.h here, but not
+ $(GENERATED_*FILES), since they need to be retained by distclean.
+ (maintainer-clean, realclean): Delete them here.
+
Tue Nov 14 17:08:06 1995 Ian Lance Taylor <ian@cygnus.com>
+ * emultempl/pe.em (gld_${EMULATION_NAME}_parse_args): Open the
+ base file with FOPEN_WB, not "w".
+
* emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Use the
environment variable LD_RUN_PATH if neither -rpath nor -rpath-link
were used.