vote up 1 vote down star

I'm writing a netscape iplanet plugin (on solaris/C using eclipse) which is basically a shared object with specific entry points, and I'd like to be able to debug the shared object with eclipse's debugger (gdb). I remember doing something similar in AIX where you could make xldb attach to a running process. Is it possible to get eclipse to run gdb to attach to a running binary? And should I expect grief because I want to debug a dynamically loaded piece of code?

flag

44% accept rate
Did you try stackoverflow.com/questions/655853/…? – lothar Apr 16 at 20:19

2 Answers

vote up 0 vote down

I use Eclipse CDT for HP/UX remote environment. I'm not sure whether it will work for you:

  1. have your app running on unix

  2. go to Run / Debug Configurations / C/C++ Attach to Remote

  3. click Debug and a list of processess will be shown

  4. select the process you want to debug.

link|flag
vote up 0 vote down

Yes it is. You need to go to the Lauch Configuration Dialog and select "C++ Attach to ...". Depending on your Eclipse version there may be only one or more "C++ Attach to ..." variants available.alt text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.