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.ac | |
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.ac')
-rw-r--r-- | gdb/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index b80f7bd..4deb4f5b 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1481,8 +1481,8 @@ if test "x$enable_multi_ice" = xyes; then AC_CONFIG_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 AC_MSG_CHECKING(whether gdbserver is supported on this host) if test "x$build_gdbserver" = xyes; then AC_MSG_RESULT(yes) |