Carlos Cobas wrote: > Hi, > > Some time ago I read an article writen by /dev which described how to add > debug info into a release build. If I remember correctly, this article was > in www.beginthread.com but it's not available online anymore. > > What I need to do is to add a new project settings from an already existing > one.
The only things you should need to change is enabling the generation of debug information in the compiler and linker options. But you should note that debugging a release build might be tricky, since some of the code you have written might not be quite correspondent to the generated code (for example, some variables might have been removed, some of the code might be optimized away, order of execution of statements might have changed, loops might have been unrolled, etc.) -- Ehsan Akhgari Farda Technology <http://www.farda-tech.com/> If it wasn't for C, we'd be using BASI, PASAL and OBOL. _______________________________________________ msvc mailing list [email protected] See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for subscription changes, and list archive.
