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

前端 未结 4 1602
暖寄归人
暖寄归人 2021-02-15 01:39

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

相关标签:
4条回答
  • 2021-02-15 02:05

    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

    0 讨论(0)
  • 2021-02-15 02:08

    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

    0 讨论(0)
  • 2021-02-15 02:13

    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

    0 讨论(0)
  • 2021-02-15 02:19

    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.

    0 讨论(0)
提交回复
热议问题