diff options
author | Mark Alexander <marka@cygnus> | 1996-09-27 06:13:24 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-09-27 06:13:24 +0000 |
commit | 54225fd0232b294f637682f91d58b35c8f5cbda5 (patch) | |
tree | 5e6658365bde7f0620aa2771f30f947c6611c880 /gdb | |
parent | f7fa777d221d3e605270e30938d70176ac71d4c9 (diff) | |
download | gdb-54225fd0232b294f637682f91d58b35c8f5cbda5.zip gdb-54225fd0232b294f637682f91d58b35c8f5cbda5.tar.gz gdb-54225fd0232b294f637682f91d58b35c8f5cbda5.tar.bz2 |
* configure.in, config/i386/tm-linux.h: Fix configure
problem on older Linux systems that prevented core files
from being recognized.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 20 | ||||
-rw-r--r-- | gdb/configure.in | 10 |
2 files changed, 30 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2c4da4f..3121908 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,23 @@ +Thu Sep 26 23:10:26 1996 Mark Alexander <marka@cygnus.com> + + * configure.in, config/i386/tm-linux.h: Fix configure + problem on older Linux systems that prevented core files + from being recognized. + +Wed Sep 25 18:31:33 1996 Stan Shebs <shebs@andros.cygnus.com> + + * dbug-rom.c: New file, support for Motorola's dBUG monitor. + * config/m68k/monitor.mt (TDEPFILES): Add it. + * NEWS: Mention it. + +start-sanitize-d10v +Mon Sep 23 16:13:50 1996 Martin M. Hunt <hunt@pizza.cygnus.com> + + * config/d10v/tm-d10v.h (SAVED_PC_AFTER_CALL): Fixed. + Now single-steps correctly. + * d10v-tdep.c (d10v_pop_frame): Fixed. + +end-sanitize-d10v Fri Sep 20 16:10:58 1996 Stan Shebs <shebs@andros.cygnus.com> * config/sh/tm-sh.h (REGISTER_NAMES): Move fp registers to diff --git a/gdb/configure.in b/gdb/configure.in index a1d0699..f5094c5 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -47,6 +47,16 @@ AC_C_CONST AC_CHECK_FUNCS(setpgid sbrk) +# If we are configured native on Linux, work around problems with sys/procfs.h +if test "${target}" = "${host}"; then + case "${host}" in + i[3456]86-*-linux*) + AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,"2") + AC_DEFINE(sys_quotactl) + ;; + esac +fi + AC_MSG_CHECKING([for gregset_t type]) AC_CACHE_VAL(gdb_cv_have_gregset_t, [AC_TRY_LINK([#include <sys/procfs.h>],[gregset_t *gregsetp = 0], |