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
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
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
I also encountered this error on Mac Mavericks. After which gdb
I figured out that the path set in Eclipse Debug Configuration is not correct. Somehow I mistakenly set it to /usr/local/bin/gdb
which actually should be /usr/bin/gdb
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.