version 2.6
This commit is contained in:
parent
da9b55af46
commit
b218076e59
6 changed files with 60 additions and 5 deletions
|
@ -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>
|
Wed Nov 15 18:05:52 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* targets.c (bfd_target): Change type of second argument to
|
* targets.c (bfd_target): Change type of second argument to
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
cygnus-2.5
|
cygnus-2.6
|
||||||
|
|
|
@ -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>
|
Tue Nov 14 17:19:11 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* dlltool.c: Use FOPEN_* macros rather than "r" or "w".
|
* dlltool.c: Use FOPEN_* macros rather than "r" or "w".
|
||||||
|
|
|
@ -74,7 +74,7 @@ LEX_OPTIONS = -I -Cem
|
||||||
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
|
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
|
||||||
|
|
||||||
# Distribution version
|
# Distribution version
|
||||||
VERSION=cygnus-2.5.3
|
VERSION=cygnus-2.6
|
||||||
# Distribution name
|
# Distribution name
|
||||||
DIST_NAME=binutils-${VERSION}
|
DIST_NAME=binutils-${VERSION}
|
||||||
|
|
||||||
|
@ -128,8 +128,6 @@ BFDDIR = $(BASEDIR)/bfd
|
||||||
INCDIR = $(BASEDIR)/include
|
INCDIR = $(BASEDIR)/include
|
||||||
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
|
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
|
||||||
|
|
||||||
@target_makefile_fragment@
|
|
||||||
|
|
||||||
ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
|
ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
|
@ -171,6 +169,21 @@ RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
|
||||||
else echo runtest ; fi`
|
else echo runtest ; fi`
|
||||||
RUNTESTFLAGS =
|
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 = \
|
FLAGS_TO_PASS = \
|
||||||
"CC=$(CC)" \
|
"CC=$(CC)" \
|
||||||
"CFLAGS=$(CFLAGS)" \
|
"CFLAGS=$(CFLAGS)" \
|
||||||
|
@ -220,7 +233,7 @@ check: site.exp
|
||||||
TCL_LIBRARY=$${srcroot}/../tcl/library ; \
|
TCL_LIBRARY=$${srcroot}/../tcl/library ; \
|
||||||
export TCL_LIBRARY ; else true; fi ; \
|
export TCL_LIBRARY ; else true; fi ; \
|
||||||
$(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
|
$(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \
|
||||||
$(RUNTESTFLAGS)
|
$(RUNTESTFLAGS) CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)"
|
||||||
|
|
||||||
installcheck:
|
installcheck:
|
||||||
/bin/sh $(srcdir)/sanity.sh $(bindir)
|
/bin/sh $(srcdir)/sanity.sh $(bindir)
|
||||||
|
|
|
@ -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>
|
Wed Nov 8 11:40:04 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* gprof.c (main): Cast getenv return value.
|
* gprof.c (main): Cast getenv return value.
|
||||||
|
|
12
ld/ChangeLog
12
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>
|
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
|
* emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Use the
|
||||||
environment variable LD_RUN_PATH if neither -rpath nor -rpath-link
|
environment variable LD_RUN_PATH if neither -rpath nor -rpath-link
|
||||||
were used.
|
were used.
|
||||||
|
|
Loading…
Add table
Reference in a new issue