I\'m trying to use GDB and KDEvelop to debug a console app under Knoppix VM. KDevelop and GDB don\'t break at my breakpoints. I suspect it\'s because they don\'t have debug symb
If you are able to see source and set the breakpoint, then you probably have debugging symbols established. However, the usual sequence is:
gcc -g -o (outputname) (source files...) gdb outputname
Give more specifics about what you are doing and what messages you see and we can be more specific.