Debugging Windows Native Applications

Hello. When I try to start debugging Windows Native Code from Visual C++ Express using the menu:
Debug->Start Debugging
I get the message:

Debugging information for 'bezier.exe' cannot be found or does not match. Binary was not built with debug information.
Do you want to continue debugging

I want to know how I can use WinDbg with Visual C++ Express or how I can use the Visual C++ debugger to debug Windows Native Code.

Thanks in advance for your response





Answer this question

Debugging Windows Native Applications

  • _Alen_

    Switch to debug build, or make sure that your build creates debug informations. This exe file does not have a pdb file, that is needed to debug.

  • Debugging Windows Native Applications