News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

How to debug with a core file?

Started by nacitar, January 05, 2009, 10:01:22 PM

Previous topic - Next topic

nacitar

How can you use codeblocks as the debugging frontend when debugging via a core file?  I can do debug->start to debug it in this instance, but i can't launch it like I need to use a core file.  Is there a way to do it?

normally you would just: gdb myprogram thecorefile
Jacob McIntosh - Software Developer

ollydbg

OS? code::blocks version?
What does core file mean? :oops:
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.