Jul 2, 2012 at 7:52am UTC
Hello everyone!
Just to make sure again, is the debug build better than the release build in terms of correctness? How about speed? I know that the former takes more size than the latter.
Thanks!
Jul 2, 2012 at 8:03am UTC
If the speed is concern, the debug is slower than release build.
What do you mean by correctness?
Jul 2, 2012 at 8:06am UTC
Gives expected/correct results out of the implemented algorithm.
Jul 2, 2012 at 9:45am UTC
They're both correct in that sense. Debug has runtime checks and no optimisation so is slower.
Jul 2, 2012 at 10:31am UTC
Some programs will work in debug mode but fail in release mode. If that is the case the program is not implemented correctly.