Mar 18, 2022 at 9:32am UTC
I faced a problem: I cannot install gdb with command mingw-get install gdb. I googled for it in these words:
C:\MinGW/bin/gdb.exe
cannot install gdb with mingw-get
but no use.
It throws me this msg:
install: gdb-7.6.1-1-mingw32-bin.tar.lzma
installing gdb-7.6.1-1-mingw32-bin.tar.lzma
mingw-get: *** ERROR *** D:\Software\MinGW\/bin/gdb.exe: extraction failed
mingw-get: *** ERROR *** unexpected end of archive reading content record
mingw-get: *** ERROR *** unexpected end of archive reading header record
Could you please help me solve this problem (help me install gdb)?
Last edited on Mar 18, 2022 at 9:55am UTC
Mar 18, 2022 at 1:10pm UTC
Last edited on Mar 18, 2022 at 1:11pm UTC
Mar 20, 2022 at 2:17am UTC
mingw-get is from the old depreacted/discontinued "mingw.org" project.
Even the web-site
http://mingw.org/ is down now.
You really want to use the follow-up project
Mingw-w64 these days!
There are various ways to install
Mingw-w64 , but I highly recommend to go with MSYS2:
https://www.msys2.org/
Once you have MSYS2, just type "pacman -S gdb" in order to install GDB.
Last edited on Mar 20, 2022 at 12:09pm UTC