Write (half-assed) ChangeLog entry for sef changes.

Change name of target from netbsd-386 to a.out-netbsd-386 so that GDB
can recognize it as an a.out variant.
This commit is contained in:
Jim Kingdon 1993-08-23 19:35:33 +00:00
parent 56486d6314
commit c28096f36a
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,11 @@
Mon Aug 23 1993 Sean Fagan (sef@cygnus.com)
and Jim Kingdon (kingdon@cygnus.com)
Add NetBSD support:
* netbsd386.c: New file.
* Makefile.in, aout-target.h, config.bfd, configure.host, configure.in,
libaout.h, targets.c: Other changes.
Fri Aug 20 17:04:59 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config/m88k-elf.mt: New file.

View File

@ -33,7 +33,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define MACHTYPE_OK(mtype) ((mtype) == M_386 || (mtype) == M_I386 || (mtype) == M_UNKNOWN)
#define MY(OP) CAT(netbsd386_,OP)
#define TARGETNAME "netbsd-386"
/* This needs to start with a.out so GDB knows it is an a.out variant. */
#define TARGETNAME "a.out-netbsd-386"
#define N_MAGIC(ex) \
( (((ex).a_info)&0xffff0000) ? (ntohl(((ex).a_info))&0xffff) : ((ex).a_info))