Qt 5.2 visual studio 2012 debugging problem
-
Hi, I download and install Qt 5.2 for Visual studio 2012 , and run the qt creator
but system can't detect any debugger ( system detect compiler [microsoft visual c++ compiler 11] )
how can i manually set debugger in my system ?i have visual studio 2012 ultimate and Windows 8.1 64 bit.
thanks. -
hi
in Qt creator you can go to Tool --> Option and then select "Build & Run" in the left menu.then go to "Kits" tab and there you can add your Debugger. -
MSVC doesn't have standalone debugger. You have to install "Windows 8.1 SDK":http://msdn.microsoft.com/en-us/windows/desktop/bg162891 (at least debugger part) . And then you will find debugger here "C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\cdb.exe"
-
T
[quote author="serg675" date="1387948405"]MSVC doesn't have standalone debugger. You have to install "Windows 8.1 SDK":http://msdn.microsoft.com/en-us/windows/desktop/bg162891 (at least debugger part) . And then you will find debugger here "C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\cdb.exe"[/quote]That works !!~
Very very very Thank you :)