Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse CDT, Can't use debugger (Always stuck on 89% process)

If I run debugger then it gets stuck on 89% process... It shows

 Launching : Configuring GDB Aborting configuring GDB

I just wanted to see the debugger is working so all I have is

printf("debug test");

in main function.. Do you guys know what the problem is?

like image 391
codereviewanskquestions Avatar asked Mar 24 '11 20:03

codereviewanskquestions


3 Answers

I have spent quite some time on this. It's really annoying and the solution is stupid to me:

Environment:

Mac + Eclipse + gdb (ggdb downloaded from macports).

Symptom:

Debugging hangs at 100% at startup. launching gdb aborting configuring gdb.

Solution: run as root

sudo /Applications/Eclipse.app/Contents/MacOS/eclipse

like image 62
MarcoWood Avatar answered Nov 13 '22 23:11

MarcoWood


I believe the answer lies in codesigning, and the problem originates with the system security changes introduced by Apple. Please see this Stack Overflow answer, which fixed the same issue for me. Launching Eclipse with sudo (as recommended above) should probably be discouraged due to potential risks with your IDE going haywire with root permissions.

like image 2
lcary Avatar answered Nov 14 '22 00:11

lcary


hello after experiencing the same, it appeared gdb was missing access to some dll (libexpat-1.dll). putting it in the current path corrected the problem. in order to check this, try invoking gdb from the command prompt

all the best

olivier

like image 1
olivier Avatar answered Nov 14 '22 01:11

olivier