Qt debugger not working Windows8

I have Qt5.5.1 with MSVC 2013 Compiler installed on a Windows 8 PC, everything works fine, but right now when I try to debug the application, I get an error, for example The CDB process terminated. What could be the problem, I attached the screen.

Debug message

Preset Settings

Debugger settings

+4
source share
3 answers

I think this is because you are using the amd64 compiler with the x86 debugger; try setting both values ​​(either amd64 or x86, but not mixed).

I had the same problem and this solved it for me ...

+2
source

, DLL "debug" build. , DLL , .exe, .

+1

I fixed this by adding the location of the ICU bin folder to PATH, in my case PATH = D: \ Qt \ 5.4.1 / 3rdparty / icu / bin;% PATH%

0
source

Source: https://habr.com/ru/post/1616677/


All Articles