2

Possible Duplicate:
no debugging symbols found in gdb debugger

When I am running our complex c programme which includes many c file. 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.

Community
  • 1
  • 1
user556761
  • 251
  • 3
  • 5
  • 9
  • Perhaps you could show some example lines that you are running. This might help people give better answers. – EnabrenTane Dec 29 '10 at 06:37
  • @user556761: If you have more details to add, please *edit* your original question, rather than posting a new one. It keeps down on the noise, and editing will still "bump" your question to the top of the list. – Cody Gray - on strike Dec 29 '10 at 07:11

1 Answers1

1

Perhaps you are stripping the symbols? A command like the following might be the culprit:

strip --strip-unneeded
atx
  • 4,831
  • 3
  • 26
  • 40
  • gcc -g brostub_config.c brostub_daemon.c brostub_handler. brostub_smpp_func.c brostub_vars.c build_skt.c bulk_genFile.c client client.c orascript.c orascript.pc orascript.pc_9_march_10 poly_check.c server.c simulator.c here simulator.c is the main file – user556761 Dec 29 '10 at 06:50