Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can not debug using Qt Creator on Windows

Tags:

qt

qt-creator

I am new to Qt. I have just installed Qt SDK version 1.2.

My platform is windows 7 64 bit
Visual Studio 2010 pro 32 bit installed ..
Now I have installed Qt SDK 1.2 (which has Qt creator)

I have created a test project and it runs fine but I can not debug it. When I debug the program I get this error message

  • The preferred debugger engine for debugging binaries of type 'x86-windows-msvc2010-pe-32bit' is not available.
  • The debugger engine 'Gdb engine' will be used as a fallback.
  • Details: There is no CDB binary available for binaries in format 'x86-windows-msvc2010-pe-32bit'

It seeems to automatically have picked up my vs 2010 compiler as I can see in the project build settings but seems like it can not use the debugger for some reason..

like image 975
Ahmed Avatar asked Apr 08 '12 03:04

Ahmed


1 Answers

According to this documentation, you need to download and install the Debugging tools for Windows.

like image 64
Arnold Spence Avatar answered Oct 12 '22 04:10

Arnold Spence