diff options
author | Fred Fish <fnf@specifix.com> | 1996-01-10 18:40:24 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-01-10 18:40:24 +0000 |
commit | 0d14c7df689bea7cc7d8cfb953a51ada7c700d1d (patch) | |
tree | 7005a840d6c39499480d2317207d66abf1e483b9 /gdb/config | |
parent | 367c2d2aef1d1280fcf7ede175b7683ab1ed5bf5 (diff) | |
download | gdb-0d14c7df689bea7cc7d8cfb953a51ada7c700d1d.zip gdb-0d14c7df689bea7cc7d8cfb953a51ada7c700d1d.tar.gz gdb-0d14c7df689bea7cc7d8cfb953a51ada7c700d1d.tar.bz2 |
From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
* gdbserver/low-linux.c: New file.
* remote.c (remote_read_bytes): Fix aborts on larger packets.
* config/i386/linux.mh (GDBSERVER_DEPFILES, GDBSERVER_LIBS):
Define.
* stabsread.c (define_symbol): If register value is too large,
tell what it is and what max is.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/linux.mh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gdb/config/i386/linux.mh b/gdb/config/i386/linux.mh index ba7321e..6cf60a0 100644 --- a/gdb/config/i386/linux.mh +++ b/gdb/config/i386/linux.mh @@ -1,14 +1,14 @@ -# Host: Intel 386 running System V -XDEPFILES= +# Host: Intel 386 running Linux + XM_FILE= xm-linux.h +XDEPFILES= ser-tcp.o + +# Needed for frexp() in libiberty. +XM_CLIBS= -lm + NAT_FILE= nm-linux.h -# corelow.o commented out because core dumps are broken as of GDB 4.9. -# According to eichin@cygnus.com, the GDB which ships with linux (not sure -# which linux distribution) can read a linux core dump. It's numbered 4.8, -# but I don't know whether it's vanilla 4.8 or modified. -NATDEPFILES= exec.o infptrace.o inftarg.o fork-child.o coredep.o i386v-nat.o -XM_CLIBS= -TERMLIB= -SYSV_DEFINE=-DSYSV -REGEX=regex.o -REGEX1=regex.o +NATDEPFILES= infptrace.o inftarg.o fork-child.o coredep.o i386v-nat.o corelow.o + +GDBSERVER_DEPFILES= low-linux.o +# Requires libbsd.a for bsd_ioctl, which is how ioctl is implemented. +GDBSERVER_LIBS= -lbsd |