Hi!
When I create an EXE using the release option instead of debug when I execute the application I get exceptions that doenst appear when I use the debug mode... does enybody knos why?
Thanx!
it may be because of the libraries you're linked to. if you linked to any libraries that have a 'd' as the last character of their name,(libcmtd.lib) that denotes a debug library and there will be an issue between mixing with debug and release libraries. I don't know if this is your problem, but I had that problem once before and that's what it was
This question comes up at this forum(s) again and again.
As usually exceptions in release mode are raised in consiquence of insidious errors not detected in debug mode.
As usually it is memory crash, memory leaks etc errors.
Don't be delused: debug mode as such is not 100% guarantee.
Common way to go: localize source of exception, select proper snippets and ask more help...
Apropos: you may get more exceptions in release mode with optimization. It's normally. The other compile mode is equal to the other machine code is equal the other program! Debugging is a process, not an event...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.