MinGW: Python enabled GDB on Windows

2

I use QtCreator 4.6.2, which apparently requires Python-enabled GDB if I want to use it as a debugger.

I tried to install mingw32-gdb-python version 7.5-1 with MinGW installer (graphical interface), and I got gdb-python27.exe file in my bin. But this file can't be opened. I'm getting error saying I'm missing python27.dll. I have Python 2.7 installed, and said DLL is located in C:\WINDOWS\System32. Obviously, System32 is in PATH, so it seems to me that it should be linked on demand.

Simply copying python27.dll to bin directory of MinGW throws an error "Application was not started correctly (0xc000007b)."

Running regular gdb (version 7.6.1-1) still does not allow python command (checked that in case gdb-python27 was only extension to normal gdb).

Did I miss some step here? Shouldn't MinGW provide me with python27.dll (it is a part of few other applications, like OpenOffice)? How can I make it work?

windows-10
python
mingw
gdb
asked on Super User Jun 30, 2018 by Yksisarvinen • edited Jun 30, 2018 by Yksisarvinen

1 Answer

1

I was having the same issue. I found that it was due to using Python 2.7 64 bit, when gdb assumes a 32 bit python installation. Switching to Python 32 bit solved the issue. And you shouldn't have to move python27.dll anywhere if you use the 32bit version.

answered on Super User Jan 13, 2020 by Eric

User contributions licensed under CC BY-SA 3.0