diff options
author | Mark Alexander <marka@cygnus> | 1997-03-11 15:49:20 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1997-03-11 15:49:20 +0000 |
commit | 33ef0f9387895c65abe028aa584d490e572100f8 (patch) | |
tree | 869237eed07ffc6541c14978dee7ff93a7520f4f /gdb/configure.in | |
parent | 52c92c7f75b082b4a7f958b93edbf690fa6128bf (diff) | |
download | gdb-33ef0f9387895c65abe028aa584d490e572100f8.zip gdb-33ef0f9387895c65abe028aa584d490e572100f8.tar.gz gdb-33ef0f9387895c65abe028aa584d490e572100f8.tar.bz2 |
First cut at supporting simulators in gdbserver:
* configure, configure.in: Allow gdbserver to be configured
for cross-target environments.
* gdbserver/Makefile.in: Add simulator support.
* gdbserver/configure.in: Eliminate assumption that host == target.
Simplify using gdb/configure.tgt and gdb/configure.host.
Fix other minor configuration errors.
* gdbserver/low-sparc.c: Fix compile error.
* gdbserver/remote-utils.c: Eliminate assumption that registers
and addresses are four bytes. Fix minor compile errors and warnings.
* gdbserver/server.c: Rewrite numerous instances of identical code
for starting inferior processes to call new function start_inferior.
Eliminate assumption that registers and addresses are four bytes.
* gdbserver/server.h: Add missing prototypes to eliminate compiler
warnings.
* gdbserver/low-sim.c: New file to mate gdbserver with simulators.
* config/mips/vr5000.mt: Add Vr5000 simulator support to gdbserver.
* config/i386/linux.mh: Eliminate gdbserver support as a first step
in moving such support from host to target makefile fragments.
* config/i386/linux.mt: Move gdbserver support here from linux.mh.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 6e28fc3..4c75e8f 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -411,9 +411,9 @@ if test "${target}" = "${host}"; then nativefile=`sed -n ' s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p ' ${host_makefile_frag}` -else +# else # GDBserver is only useful in a "native" enviroment -configdirs=`echo $configdirs | sed 's/gdbserver//'` +# configdirs=`echo $configdirs | sed 's/gdbserver//'` fi changequote([,]) |