Мне удалось настроить gdbserver для приложения Qt и запустить его на 64-битном компьютере с Ubuntu, используя:
gdbserver <ip>:20000 ./sampleQtApp
И я попытался подключить его с помощьюудаленный компьютер той же сети, использующий GDB следующим образом:
set architecture i386:x86-64:intel
target remote <ip>:20000
Это дает мне следующий вывод, и я не могу понять, почему.
(gdb) target remote 10.9.5.79:20000
warning: A handler for the OS ABI "GNU/Linux" is not built into this configuration
of GDB. Attempting to continue with the default i386:x86-64 settings.
Remote debugging using 10.9.5.79:20000
Remote register badly formatted: T0506:0000000000000000;07:a080c7ceff7f0000;10:f0fae7b0107f0000;thread:7c0;core:0;
here: 00000000;07:a080c7ceff7f0000;10:f0fae7b0107f0000;thread:7c0;core:0;
(gdb)
Что я здесь не так делаю