I just installed Qt Creator (64 bit Windows) and I check that everything works as expected.
At this point, the only problem I'm connected with is with debuggers. Firstly, I tried to add gdb manually ( gdb.exe ) and there was a problem with python gdb.exe , so I added gdb-python ( gdb-python27.exe ), and the result:
Unable to create a debugger engine of the type "No engine"
I am using this kit:

MinGW -> MinGW\bin\mingw32-gcc-4.8.1.exe GBD-Python -> MinGW\bin\gdb-python27.exe
I read this post but it didnโt help me since I am using MinGW: /
Thanks in advance.
Edit1 : I am open if you want to recommend me a different kit configuration :-)
Edit2 : I tried to execute gdb-python27.exe , and I got an error ( python27.dll missing). I installed it in C:\Windows\SysWOW64 , and now the error (when I try to open gdb-python27.exe ) is similar to The application failed to initialize properly (0xc000007b) . Still the same error while debugging in the Qt creator.
Edit3 . Is the problem related to the difference between my MinGW (32 bits) and my OS (64 bits)? Donโt think so (creator of Qt 32 bit). I think the message The application failed to initialize properly (0xc000007b) is due to using python27.dll (64 bits) instead of 32 bits.
Edit4 : I load python27.dll (32 bit) and now I can execute gdb-python27.exe , but I received this message through cmd.exe: ImportError: No module named site .
I still got the Unable to create a debugger engine of the type "No engine" error when trying to debug with the Qt creator.
source share