difference in compilation time between release and debug mode

1.6k Views Asked by At

I have an sln file for compiling c source code. when I compile that in VS2008 in release mode it takes around 4 minutes to compile the code. But in debug mode it take only 1 minute to compile the code. I didn't understand the difference in Release mode and debug mode.

Can anyone help me in this?

3

There are 3 best solutions below

0
On

The optimizer is turned on by default in the Release configuration. Yes, it needs time to do its job. The linker is also not doing incremental links anymore, that can make a big difference.

You never really care about this, release builds are something you do when you're done or leave up to a build server.

0
On

When building in debug mode, all extra work the compiler does is adding debug information (to simplify, basically a table of all symbols), this is very simple and goes fast. When building in release mode, the compiler does lots of optimizations, and those can be quite time consuming if the code is non-trivial.

0
On

In release mode, the compiler spends much more effort working out optimisations - this is can be quite time-consuming, because it does similar things to a sudoku solver or chess engine - it tries a lot of different options to try to find the best one in this particular case.