gdb (7.7.1-2+hurd.1) dont stop at breakpoints!! even the simplest
program fails:
cat hello.c
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0;
}
gcc -g -Wall -o hello hello.c
gdb ./hello
Reading symbols from ./hello...done.
(gdb) br main
Breakpoint 1 at 0x804851c: file hello.c, line 5.
(gdb) run
Starting program: /home/srs/DEBs/hurd/lockf/glibc_tests/hello
Hello World
During startup program exited normally.