How to debug in release mode
-
Hi, I want to debug my application in release mode ,added debug info into the release, which tool allow me to view more that just assembley when running it on the client machine dr. watson...?,windbg...? what should i do .??? thanks tomer
-
Hi, I want to debug my application in release mode ,added debug info into the release, which tool allow me to view more that just assembley when running it on the client machine dr. watson...?,windbg...? what should i do .??? thanks tomer
Did you remember to link with debug info, and also include the pdb file on the client (if that format was used)... If so, and you wind up in a debugger, it should prompt you for the locations of the relevant source files and away you go...
-
Hi, I want to debug my application in release mode ,added debug info into the release, which tool allow me to view more that just assembley when running it on the client machine dr. watson...?,windbg...? what should i do .??? thanks tomer
Check out Keith Rule's article Debugging Release Mode Problems in the Debug Tips section.