Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt Creator 5 - No debugger set up

Tags:

c++

qt

qt-creator

I was seted up a compiler to Microsoft Visual C++ x86 Compiler, but now i have this error:

The compiler "Microsoft Visual C++ x86 Compiler" cannot produce code for the Qt version. Warning: No debugger set up

I guess that i need to set debugger, but i don't know which path to put Debugger tab.

I have installed Visual Studio 2012.

like image 535
user1814358 Avatar asked Jan 21 '13 12:01

user1814358


People also ask

What is an unclaimed breakpoint?

An unclaimed breakpoint represents a task to interrupt the debugged program and passes the control to you later. It has two states: pending and implanted . Unclaimed breakpoints are stored as a part of a session and exist independently of whether a program is being debugged or not.


1 Answers

For binary version of SDK, you need MSVS2010, Express version should be ok. SP1 must be installed on top of these too.

For debugging you also need to install Windws SDK 7.1 and SP1 update for it.

Links in this answer: https://stackoverflow.com/a/14089968/1717300


If you want to use MSVS2012, I think you still have to compile yourself. Instructions:

http://qt-project.org/wiki/Building-Qt-5-from-Git

like image 122
hyde Avatar answered Oct 21 '22 13:10

hyde