Reputation: 261
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
Reputation: 40299
You will probably will need to compile each .c file with -g to have a complete set of debugging symbols.
Upvotes: 6