Page 1 of 1

what's the difference between compile with/without debugger?

Posted: Fri Jun 06, 2008 8:28 pm
by eddy
I notice this option recently ... :roll:

Posted: Fri Jun 06, 2008 8:42 pm
by ts-soft
without is faster :wink: but no debuggeroutput/functions

Re: what's the difference between compile with/without debug

Posted: Sat Jun 07, 2008 12:50 am
by UserOfPure
Without means NO error-checking in your app, so things like "a=b/0" will crash your app instead of giving you an error message. All executables are compiled without error-checking. And as ts-soft said, without makes your app faster, because it's not checking for errors like "/0" anymore.