I would like to perform debug operations on the Android open source platform.

I am trying to run "gdbserver :5039 --attach" in my terminal but I keep receiving "command not found".

I have built the Android OS using the "full_crespo-userdebug" configuration, which according to the android docs, should provide me with root access on my Nexus S phone?

How can I set things up so that I can debug?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

To debug an android device you first need to run gdbserver on the device.

gdbserver :5039 --attach pid

then in your gingerbread source folder you need to run

source build/envsetup.sh

this will allow you to now run

gdbclient

which should connect to the gdbserver on device

link|improve this answer
Thanks for the help, unfortunately the first line (gdbserver) results in 'Operation not permitted' – lost_bits1110 Aug 25 '11 at 22:48
Note that my phone is also rooted, ie I see 'LOCK STATE - UNLOCKED' in the recovery screen. – lost_bits1110 Aug 25 '11 at 23:29
feedback

Your Answer

 
or
required, but never shown

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