what's the difference between compile with/without debugger?
what's the difference between compile with/without debugger?
I notice this option recently ... :roll:
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual toolwithout is faster
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
UserOfPure
- Enthusiast

- Posts: 469
- Joined: Sun Mar 16, 2008 9:18 am
Re: what's the difference between compile with/without debug
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.

