Author Topic: Lossing Debug log after 'build and run' command  (Read 2734 times)

Offline Nico2993ee

  • Single posting newcomer
  • *
  • Posts: 6
Lossing Debug log after 'build and run' command
« on: February 07, 2011, 01:17:56 pm »
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

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5928
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Lossing Debug log after 'build and run' command
« Reply #1 on: February 07, 2011, 01:48:46 pm »
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.

Offline Nico2993ee

  • Single posting newcomer
  • *
  • Posts: 6
Re: Lossing Debug log after 'build and run' command
« Reply #2 on: February 07, 2011, 01:53:12 pm »
Shame on my! :)