user556761
user556761

Reputation: 261

no debugging symbols found in gdb debugger

When i am running my complex c programme simulator .c which include many c file in gdb it gives the error no debugging symbols found. I am using gcc -g simulator.c for compling this programme. Can any body tell me why this error is coming.

Upvotes: 4

Views: 9144

Answers (1)

Paul Nathan
Paul Nathan

Reputation: 40299

You will probably will need to compile each .c file with -g to have a complete set of debugging symbols.

Upvotes: 6

Related Questions