Debug and Release

  • Thread starter Thread starter Jared
  • Start date Start date
What is difference between Release and debugging compiling?

1. Name :)
2. In debug, debug symbols are produced, in release not.
3. No optimization is done in debug mode, in release mode, optimization is
done.
4. In debug there is DEBUG, in release there is TRACE

Basicaly:
When you are doing release mode, you want compiler to make all necessary
aragements to enable your program to run faster. In debug mode, you want
to be able to set breakpoints and to see stack trace of your code, not of
some compiler optimizations.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top