diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-22 17:34:15 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-22 17:34:15 +0000 |
commit | a13e2c95aa6a29e5e302edf7fdb51bc17a5a74cb (patch) | |
tree | ca72b96e7a79f8b974a5fe4f5b7089d71ffbe285 /gdb/configure | |
parent | 59a59f840d4afb9f73cd3e22e0e6e331a6838521 (diff) | |
download | gdb-a13e2c95aa6a29e5e302edf7fdb51bc17a5a74cb.zip gdb-a13e2c95aa6a29e5e302edf7fdb51bc17a5a74cb.tar.gz gdb-a13e2c95aa6a29e5e302edf7fdb51bc17a5a74cb.tar.bz2 |
ChangeLog:
* configure.tgt: Enable gdbserver for SPU target.
* configure.ac: Build gdbserver when gdb_native is yes.
* configure: Regenerate.
* regformats/reg-spu.dat: New file.
gdbserver/ChangeLog:
* configure.srv: Add target "spu*-*-*".
* Makefile.in (clean): Remove reg-spu.c.
(reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
* spu-low.c: New file.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/configure b/gdb/configure index 5aa226f..0d331c3 100755 --- a/gdb/configure +++ b/gdb/configure @@ -22646,8 +22646,8 @@ subdirs="$subdirs multi-ice" fi -# We only build gdbserver automatically if host and target are the same. -if test "x$target" = "x$host"; then +# We only build gdbserver automatically in a native configuration. +if test "$gdb_native" = "yes"; then echo "$as_me:$LINENO: checking whether gdbserver is supported on this host" >&5 echo $ECHO_N "checking whether gdbserver is supported on this host... $ECHO_C" >&6 if test "x$build_gdbserver" = xyes; then |