no debugging symbols found in gdb debugger [duplicate]
Possible Duplicate:
no debugging symbols found in gdb debugger
When I am running our complex c programme which includes many c file开发者_StackOverflow社区. It gives error "No debugging symbols found ". I am compiling each c file with gcc -g option. Still it is giving error. Can any body tell the sollution of this problem.
Perhaps you are stripping the symbols? A command like the following might be the culprit:
strip --strip-unneeded
精彩评论