warning: Target-supplied registers are not supported by the current architecture
William Tambe via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <CAF8i9mM7S8_nCa1k0EEBNKTDQHz=KLYZ3RA3tQ1R8Ej6W7uhsw@mail.gmail.com> |
I am working on gdbserver support. I am able to remotely execute the executable and set breakpoints, however right after issuing the `target remote` command, I am getting following warning: (gdb) target remote 192.168.1.164:2000 Remote debugging using 192.168.1.164:2000 warning: Target-supplied registers are not supported by the current architecture Error message is coming from gdb/target-descriptions.c at line 576, due to data->arch_regs.empty () return true. Any idea what I might have missed causing data->arch_regs.empty () to return true ? Best Regards, William