QT 5.15.0 install :
-
About why python does not work good for gdb, could you check the python installation in Qt:
cd C:\Programmation\Qt\Tools\mingw810_64\opt\bin python -c "print 2+2"
If the python command works and prints "4" then could you try the same with the verbose flag:
python -v -c "print 2+2"
and post the output here...
-
Ok, looks good. I think to see why your gdb.exe does not run, we need to trace it using Process Monitor, download it here
Here's what you do:
start Process Monitor (procmon.exe), type ctrl+L to show the Filter dialog box, in that dialog in the top left corner, in the drop-down list, select "Process Name", then check that the next drop-down list selects "Is" then in the edit box type gdborig.exe and the click the Add button. After that it should look like this:
Click OK button to close the dialog box.
Then start gdb.exe as we did before:
C:\Programmation\Qt\Tools\mingw810_64\bin\gdb.exe
Now entries should be seen in ProcMon, like this:
My ProcMon shows 2315 entries for gdborig.exe but your output should be shorter (since it fails) post here say the last 50 lines before it stops.Note: you can clear the display of ProcMon using ctrl+X
-
Thanks, now I can see the gdborig.exe crash in the Procmon output (the C:\Windows\System32\WerFault.exe line)
To see the crash info, click on the Start button and type event then select Event Viewer
In the left column, select Windows Logs and then click on Application, then in the middle window, in the Source column, do you see any gdborig lines? If yes, click on them to see more info in the lower (General) window.Edit: gdborig.exe seems to crash when trying to read the C:\msys64\etc\termcap file. If you have MSYS2 installed, try removing or renaming that file.
Or you could try removing MSYS2 completely (click on Start button, type add or , select Add or Remove programs then search for MSYS2 64-bit in the list, click on it and select Uninstall). -
@hskoglund said in QT 5.15.0 install ::
C:\Programmation\Qt\Tools\mingw810_64\bin\gdb --nx
Nothing more :
-
@hskoglund said in QT 5.15.0 install ::
C:\Programmation\Qt\Tools\mingw810_64\bin\gdb --configuration
Nothing :
-
Huh, no good luck today :-(
Ok we know that gdborig.exe crashes in msvcrt.dll with Access Violation 0xc0000005 but googling that usually only says "try upgrading your Windows 10 or try upgrading your version of MinGW"
But you already have the latest of both. Maybe you have to wait for Qt 5.15.1...
-
@hskoglund OK.
I will wait that my computer will be OK to have the latest Windows 10 version. I have the 1909 and the latest is 2004.
And i will wait for a new version of Qt.
Or i will reinstall Windows and all my softwares, but it takes a long time.
And thank you very much for your help.
Best regards.