debugging issues
-
I just started with visual C++. I'm writing a graphics program using openGL in an MDI application. But to make my life easier, I just took the example on this site which draws openGL graphics with MDI. I just deleted all the functions, globals, etc. that I didn't want. But now I'm starting to read up on some debugging stuff (breakpoints and single stepping). When I insert a breakpoint and then say "go" to debug I get a message box that my .exe doesn't contain debugging information. When I press OK, I get this message box: One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. And then some dissambly file comes up. I have a feeling all this has something to do with the fact that I used someone else's demo instead of starting from scratch with the necessary settings. Is there some way I can fix it so it will let me debug?
-
I just started with visual C++. I'm writing a graphics program using openGL in an MDI application. But to make my life easier, I just took the example on this site which draws openGL graphics with MDI. I just deleted all the functions, globals, etc. that I didn't want. But now I'm starting to read up on some debugging stuff (breakpoints and single stepping). When I insert a breakpoint and then say "go" to debug I get a message box that my .exe doesn't contain debugging information. When I press OK, I get this message box: One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. And then some dissambly file comes up. I have a feeling all this has something to do with the fact that I used someone else's demo instead of starting from scratch with the necessary settings. Is there some way I can fix it so it will let me debug?
You active configuration is currently release mode. Set this to debug mode, please. Nish
_I am looking for a free racing game. Old style racing game without any complicated 3D stuff. Around 4 MB download. If anyone has such a game, please inform me._
-
I just started with visual C++. I'm writing a graphics program using openGL in an MDI application. But to make my life easier, I just took the example on this site which draws openGL graphics with MDI. I just deleted all the functions, globals, etc. that I didn't want. But now I'm starting to read up on some debugging stuff (breakpoints and single stepping). When I insert a breakpoint and then say "go" to debug I get a message box that my .exe doesn't contain debugging information. When I press OK, I get this message box: One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. And then some dissambly file comes up. I have a feeling all this has something to do with the fact that I used someone else's demo instead of starting from scratch with the necessary settings. Is there some way I can fix it so it will let me debug?
Are you trying to debug the release build ? Try debugging the "Debug" build. Jonathan de Halleux, Belgium.