mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
Merge changes for dos x udi:
* Makefile.in (udi2go32.o): add rule to build this file * 29k-share/udi/udi2go32.c: new file * config/a29k/a29k-udi.mt: add udi2go32.o * 29k-share/udi/{udr.c, udip2soc.c}: #ifdef out the entire file if __GO32__ is defined. What a hack.
This commit is contained in:
parent
3c292c5a46
commit
021a5c6b01
@ -24,6 +24,9 @@ static char udip2soc_c_AMD[]="@(#)udip2soc.c 2.8, AMD";
|
||||
* It is used by DFE client processes
|
||||
********************************************************************** HISTORY
|
||||
*/
|
||||
/* This is all unneeded on DOS machines. */
|
||||
#ifndef __GO32__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
@ -1245,3 +1248,4 @@ UDIUInt32 UDIGetDFEIPCId()
|
||||
{
|
||||
return ((company_c << 16) + (product_c << 12) + version_c);
|
||||
}
|
||||
#endif /* __GO32__ */
|
||||
|
@ -26,6 +26,9 @@ static char udr_c_AMD[]="@(#)udr.c 2.3, AMD";
|
||||
* and de-serialised back into the approproiate objects.
|
||||
********************************************************************** HISTORY
|
||||
*/
|
||||
/* This is all unneeded on DOS machines. */
|
||||
#ifndef __GO32__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
@ -421,3 +424,4 @@ int size;
|
||||
offset = offset & (size -1);
|
||||
if(offset) udr_setpos(udrs, align + offset);
|
||||
}
|
||||
#endif /* __GO32__ */
|
||||
|
@ -1,3 +1,12 @@
|
||||
Wed Nov 3 09:20:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
Merge changes for dos x udi:
|
||||
* Makefile.in (udi2go32.o): add rule to build this file
|
||||
* 29k-share/udi/udi2go32.c: new file
|
||||
* config/a29k/a29k-udi.mt: add udi2go32.o
|
||||
* 29k-share/udi/{udr.c, udip2soc.c}: #ifdef out the entire file
|
||||
if __GO32__ is defined. What a hack.
|
||||
|
||||
Wed Nov 3 09:20:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* remote.c (putpkt, getpkt): Don't call interrupt_query.
|
||||
|
@ -1011,6 +1011,9 @@ ALLCONFIG = config/a29k/a29k-kern.mt config/a29k/a29k-udi.mt \
|
||||
udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
|
||||
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
|
||||
|
||||
udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
|
||||
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
|
||||
|
||||
udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
|
||||
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
# Target: AMD 29000 on EB29K board over a serial line.
|
||||
TDEPFILES= exec.o a29k-pinsn.o remote-udi.o a29k-tdep.o udip2soc.o udr.o
|
||||
TDEPFILES= exec.o a29k-pinsn.o remote-udi.o a29k-tdep.o udip2soc.o udr.o \
|
||||
udi2go32.o
|
||||
REMOTE_O=
|
||||
TM_FILE= tm-a29k.h
|
||||
# The following is for ../include/a.out.encap.h
|
||||
|
Loading…
Reference in New Issue
Block a user