I am newbie for programming. I have tried to compile C file using Linux Ubuntu terminal by this command:
gcc -g test.c
After compiling I then start debugging
gdb -q ./a.out
to debugging my C file. I'm reading the programming book but the book said that I should have "Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1"" popup right after I start to debugging by using gdb. At first I ignored it but later on I could not debug some of the example from the book.
How can I update this debugger?