проблема с удаленной отладкой Raspberry Pi - PullRequest
0 голосов
/ 18 апреля 2019

У меня проблема с удаленной отладкой c проекта в ECLIPSE.

КОНСОЛЬНЫЙ КОД:

chmod 777 /home/pi/remote-debugging/touch;gdbserver  :2345 /home/pi/remote-debugging/touch;exit

Last login: Thu Apr 18 20:08:40 2019 from 10.3.0.13

pi@raspberrypi:~$ chmod 777 /home/pi/remote-debugging/touch;gdbserver  :2345 /home/pi/remote-debugging/touch;exit
Process /home/pi/remote-debugging/touch created; pid = 2590
Listening on port 2345
Remote debugging from host 10.3.0.13

Тогда я получаю нарушение защиты памяти. «Тема № 1 3013 [ядро: 0] (приостановлено: сигнал: SIGSEGV: ошибка сегментации)»

Код:

#include <stdio.h>

int main()
{
printf("Hello, world\n");
exit(0);
}

Screen1

screen2

...