Finding run time errors?
Finding run time errors?
I was wondering if there is a program that finds run time errors?
xD
Yeah in your IDE you can setup two builds; Release and Debug (many more in fact but those are the most common and standard ones) and those are for what they sound like they're for. The release version is the version which you would release to the public, the debug version is the one you use to track down bugs and the like, they're setup to compile in debug symbols and data so that when your app crashes the debugger can show you what line of code crashed and what state variables were in.
What IDE are you using?
Yeah in your IDE you can setup two builds; Release and Debug (many more in fact but those are the most common and standard ones) and those are for what they sound like they're for. The release version is the version which you would release to the public, the debug version is the one you use to track down bugs and the like, they're setup to compile in debug symbols and data so that when your app crashes the debugger can show you what line of code crashed and what state variables were in.
What IDE are you using?
Yeah that's got a debugger built into it... There should be a debug menu at the top or something... I didn't actually do any debugging back when i used DevC++ though so can't tell you much about it!
In MSVC you have seperate build configurations for each type of build so in the Debug build you can link to debug libraries (you could build a debug lib of Irrlicht if you were getting crashes inside Irrlicht) whereas in Release build you'd link to the release libraries, there's probably something similar in DevC++.
In MSVC you have seperate build configurations for each type of build so in the Debug build you can link to debug libraries (you could build a debug lib of Irrlicht if you were getting crashes inside Irrlicht) whereas in Release build you'd link to the release libraries, there's probably something similar in DevC++.
yep
Worlds at War (Current Project) - http://www.awkward-games.com
Ganadu'r, The Eternal Sage (Other Current Project) - http://rpg.naget.com
Ganadu'r, The Eternal Sage (Other Current Project) - http://rpg.naget.com