2

While I try to debug the application, it pop up the dialog box and shown as below.

enter image description here

How to overcome this issue?

halfer
  • 19,824
  • 17
  • 99
  • 186
karthik
  • 17,453
  • 70
  • 78
  • 122
  • 1
    Have you read http://doc.qt.nokia.com/qtcreator-snapshot/creator-debugger-engines.html – Bart May 18 '11 at 07:25

1 Answers1

5

You need to install the Debugging Tools for Windows (the cdb debugger) for QtCreator to use the Microsoft debugger engine for programs built with MSVC.

To use GDB on Windows, you'll need to build the program using MinGW.

Details are available here: http://doc.qt.nokia.com/qtcreator-snapshot/creator-debugger-engines.html

Michael Burr
  • 333,147
  • 50
  • 533
  • 760