News:

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

Main Menu

Lossing Debug log after 'build and run' command

Started by Nico2993ee, February 07, 2011, 01:17:56 PM

Previous topic - Next topic

Nico2993ee

Hello everyone,

Why is do I always lose the debug information(warnings) after I do a build and run command.
I would expect that this panel would contain the same information (after the build and run command) as it does after the build command.

It there a setting for this which overlooked?

Anyway have a good day. Best regards

Nico

ollydbg

when you do a "build", only the edited/changed cpp/c file will be compiled, so only the warnings in this file will be plotted. :D
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.