mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 18:06:03 +08:00
* Makefile.in ($(DIST_NAME).tar.Z), TODO: Various fixes.
* ar.c (get_pos_bfd): Fix to handling of before/after positioning options. * bucomm.c (fatal): MISSING_VFPRINTF is no longer an issue, since libiberty contains vfprintf etc if otherwise missing. * m68k-pinsn.c (print_insn_arg): Support BB/BW/BL type operands, as used by branch instructions. * nm.c: Delegate printing of symbols to BFD, by using bfd_print_symbol to do the formatting.
This commit is contained in:
@ -23,7 +23,7 @@ srcdir = .
|
|||||||
destdir = /usr/local
|
destdir = /usr/local
|
||||||
|
|
||||||
# Distribution version
|
# Distribution version
|
||||||
VERSION=1.90
|
VERSION=1.91
|
||||||
# Distribution name
|
# Distribution name
|
||||||
DIST_NAME=binutils-beta-${VERSION}
|
DIST_NAME=binutils-beta-${VERSION}
|
||||||
|
|
||||||
@ -224,11 +224,11 @@ install: $(PROGS)
|
|||||||
dist: $(DIST_NAME).tar.Z
|
dist: $(DIST_NAME).tar.Z
|
||||||
|
|
||||||
$(DIST_NAME).tar.Z:
|
$(DIST_NAME).tar.Z:
|
||||||
cd ../..; rm -f $(DISTNAME); ln -s devo $(DIST_NAME)
|
cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
|
||||||
cd ..; Sanitize test
|
make binutils.mm -f Makefile.in
|
||||||
cd binutils; make binutils.mm -f Makefile.in
|
|
||||||
cd ../ld; make ld.mm -f Makefile.in
|
cd ../ld; make ld.mm -f Makefile.in
|
||||||
cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
|
cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
|
||||||
|
rm -rf ../../$(DIST_NAME)
|
||||||
|
|
||||||
# These get around a bug in Sun Make in SunOS 4.1.1
|
# These get around a bug in Sun Make in SunOS 4.1.1
|
||||||
alloca.o:alloca.c
|
alloca.o:alloca.c
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
o 'nm -a' should print stab code names.
|
|
||||||
|
|
||||||
OLD:
|
OLD:
|
||||||
|
|
||||||
o - merge:
|
o - merge:
|
||||||
|
@ -20,14 +20,25 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
/* $Id$
|
/* $Id$
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.4 1991/10/16 18:56:56 bothner
|
Revision 1.5 1991/11/03 22:58:44 bothner
|
||||||
* Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
|
* Makefile.in ($(DIST_NAME).tar.Z), TODO: Various fixes.
|
||||||
i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
|
* ar.c (get_pos_bfd): Fix to handling of before/after
|
||||||
* strip.c: Add or update Copyright notice.
|
positioning options.
|
||||||
* TODO: Add note on 'nm -a'.
|
* bucomm.c (fatal): MISSING_VFPRINTF is no longer an issue,
|
||||||
* version.c: Update version number to 1.90.
|
since libiberty contains vfprintf etc if otherwise missing.
|
||||||
* Makefile.in: Fix making of documentation for dist.
|
* m68k-pinsn.c (print_insn_arg): Support BB/BW/BL
|
||||||
|
type operands, as used by branch instructions.
|
||||||
|
* nm.c: Delegate printing of symbols to BFD,
|
||||||
|
by using bfd_print_symbol to do the formatting.
|
||||||
|
|
||||||
|
* Revision 1.4 1991/10/16 18:56:56 bothner
|
||||||
|
* * Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
|
||||||
|
* i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
|
||||||
|
* * strip.c: Add or update Copyright notice.
|
||||||
|
* * TODO: Add note on 'nm -a'.
|
||||||
|
* * version.c: Update version number to 1.90.
|
||||||
|
* * Makefile.in: Fix making of documentation for dist.
|
||||||
|
*
|
||||||
* Revision 1.3 1991/10/11 11:22:00 gnu
|
* Revision 1.3 1991/10/11 11:22:00 gnu
|
||||||
* Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
|
* Include bfd.h before sysdep.h, so ansidecl and PROTO() get defined first.
|
||||||
*
|
*
|
||||||
@ -354,9 +365,11 @@ print_insn_arg (d, buffer, p, addr, stream)
|
|||||||
case 'B':
|
case 'B':
|
||||||
if (place == 'b')
|
if (place == 'b')
|
||||||
val = NEXTBYTE (p);
|
val = NEXTBYTE (p);
|
||||||
else if (place == 'w')
|
else if (place == 'B')
|
||||||
|
val = buffer[1];
|
||||||
|
else if (place == 'w' || place == 'W')
|
||||||
val = NEXTWORD (p);
|
val = NEXTWORD (p);
|
||||||
else if (place == 'l')
|
else if (place == 'l' || place == 'L')
|
||||||
val = NEXTLONG (p);
|
val = NEXTLONG (p);
|
||||||
else if (place == 'g')
|
else if (place == 'g')
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user