No Symbol Table using GDB on Compiled Programs

The No symbol table loaded message you are getting is misleading: all GDB is telling you is that your binary does not have any debugging info in it. Usually this is solved by rebuilding the binary with -g flag, but since you are given an already compiled and linked file, you can’t do that. Without debug info, certain commands, such as list, break … Read more