Error: target not supported by gdbserver.

Hi Everyone,

I am trying to connect host(i686-pc-cygwin) to the target (arm-elf) via Gdbserver but I am getting following error

checking whether vsnprintf is declared... yes
checking for socklen_t... yes
checking for Elf32_auxv_t... no
checking for Elf64_auxv_t... no
Error: target not supported by gdbserver

I gave below command in the tcsh shell
./configure --prefix=${TOOL} --target=${BLD} where TOOL=my directory and BLD=arm-elf

Thanks in advance

`--target' is for cross-compilers - you want to use `--host' instead.

If that doesn't work, try using the output of `arm-elf-gcc -dumpmachine' instead of `arm-elf' (assuming your cross-toolchain prefix is arm-elf-).