Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install GDB debugger to Eclipse CDT

Tags:

eclipse

gdb

I want to use Integrated Tool to develop C++, not to use Eclipse as only the editor and compile in other environment. my eclipse CDT tool as default is without GDB debugging environment, can any body give some hints on how to install gdb to Eclipse CDT?

like image 472
parsifal Avatar asked Dec 29 '22 03:12

parsifal


1 Answers

For Windows - You can find "ready to use" gdb.exe here MinGW - Minimalist GNU for Windows at Sourceforge.net. Get gdb-7.0-2-mingw32-bin.tar.gz.

Just install into MinGW directory and set path to gdb.exe under Run->Debug Configurations->Debugger.

The latest on 05.2012 - MinGW - Minimalist GNU for Windows - gdb-7.4-2-mingw32-bin.tar.lzma

like image 176
SChepurin Avatar answered Dec 30 '22 16:12

SChepurin