Запуск прошёл удачно.
Надеюсь опытные люди помогут с проблемами во время отладки. Получаю такие предупреждения:
CODE
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
Cannot access memory at address 0x0
warning: Could not load shared library symbols for 2 libraries, e.g. /lib/libc.so.6.
Use the "info sharedlibrary" command to see the complete listing.
Do you need "set solib-search-path" or "set sysroot"?
Single stepping until exit from function main,
which has no line number information.
и ещё такую ошибку: No source available for "main() at 0x8360"
вот код:
CODE
/*
* hello.c
*
* Created on: Mar 31, 2013
* Author: user
*/
#include <stdio.h>
int main(void)
{
int i;
for(;;);
printf("Hello, World!\n");
return 0;
}