Setting Visual Studio 2015 debugger
-
@Furkas Please don't hijack other people threads. If you want to ask about MinGW start another thread. MinGW is provided as an all-in-the-box option in the online installer for both commercial and free licenses.
-
@DelNoble The kits without exclamation marks look ok. The other two are missing a debugger (again - see the "Debugger" combo in their properties). For those just select a debugger from that combo and you should be good to go.
-
@DelNoble The kits without exclamation marks look ok. The other two are missing a debugger (again - see the "Debugger" combo in their properties). For those just select a debugger from that combo and you should be good to go.
wrote on 18 Nov 2015, 17:16 last edited by@Chris-Kawa
Thank you Chris, it is working now. A thousand thanks and keep up the good work Chris... you're the man!! -
I'm glad I could help. If your problem is solved please mark the thread as solved from the "Topic Tools" button menu.
-
wrote on 21 Oct 2016, 08:37 last edited by
I read the post and all is ok,
Many thank Chris. -
wrote on 2 Feb 2017, 14:39 last edited by
I am writing this for future reference.
Visual Studio 2015 installs Window SDK without debugger. You cannot change how it is installed at the moment of installation.
After installation you have to go to "Control Panel"->"Programs & Features" and select installed "Windows Software Development Kit". Then change the install to include debugger. -
I'm glad I could help. If your problem is solved please mark the thread as solved from the "Topic Tools" button menu.
wrote on 12 Sept 2017, 06:17 last edited by@Chris-Kawa When we selected the Debugger in Kits tab, we also have to select the compiler.
Right now I am getting 4 options for compilers :
Which compiler should I choose in this case? -
Which compiler should I choose in this case?
Depends on what case that is. These are C and C++ compilers:
x86 - 32bit compiler producing 32bit binaries
amd64 - 64bit compiler producing 64bit binaries
amd64_x86 - 64bit cross-compiler producing 32bit binaries
x86_amd64 - 32bit cross-compiler producing 64bit binariesChoose the one you want for your project.