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

Working on new editor enhancements?
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

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

Post by eddy »

I notice this option recently ... :roll:
Imagewin10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

without is faster :wink: but no debuggeroutput/functions
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
UserOfPure
Enthusiast
Enthusiast
Posts: 469
Joined: Sun Mar 16, 2008 9:18 am

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

Post 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.
Post Reply