Click to See Complete Forum and Search --> : Debug & Release version


Clarence
March 30th, 1999, 05:18 AM
I wonder are there other differences between DEBUG and RELEASE version of developed application besides the point that the former has embedded debug information ?


Thanks

Martin Speiser
March 30th, 1999, 05:58 AM
Hi Clarence,


yes, there are more differences. The debug version uses a special heap managment to detect memory leaks.


Martin

Clarence
March 30th, 1999, 07:08 AM
Martin,


I was thinking of giving my users the DEBUG version of my application. Are there other things that I need to think about in doing so ?

Thanks for answering.

Martin Speiser
March 30th, 1999, 07:24 AM
Hi Clarence,


if you users aren't your beta testers I don't recommend in giving away a debug version. A debug version is normally a lot bigger and runs slower.


BTW, I forgot the stack probes. The stack is tested for integrity on every function call. And the code is not optimized.


Martin

Clarence
March 30th, 1999, 10:08 PM
Thanks Martin !