Can anyone tell me how to run ndk-gdb from within emacs using gdb-mode? I'm currently running it in a shell buffer. What I'd love to have is a way to automatically sync a source file buffer with the current pc in gdb when I break or step. Anything more, like setting breaks from source, buffers that show gdb locals etc., and key shortcuts for gdb commands would be gravy.

Background: I'm developing in GNU Emacs 23.1.90.1 (i386-apple-darwin10.5.0, NS apple-appkit-1038.35) of 2010-12-15 on OSX 10.6.6 with android-mode, using android-ndk-r5b and mixed java/c/c++ code for an android target.

Android-mode and shell (running ndk-gdb) within emacs allow me to see just about everything I need, but my setup would be more convenient if I could get a source buffer to sync with the debugger, or get the equivalent of what is described in EmacsWiki here.

FYI, I'm currently using eclipse for java side debugging and development, but finding it unstable and difficult to set up for native work, despite the availability of sequoyah, and besides, eclipse is no emacs.

[Appended]

Running M-x gdb with ndk-gdb as the gdb command (see below) results in a buffer called gud with a modeline saying "(Debugger:run [initializing...])". The buffer does not accept gdb commands, nor does it accept emacs gdb commands - (M-s, M-n etc result in <>

Output:

Current directory is /Users/jpschelter/
Android NDK installation path: /Developer/android-ndk-r5b
Using specific adb command: /Developer/android-sdk-mac_x86/platform-tools/adb
...
... ...
...
(no debugging symbols found)
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
0xafd0e21c in nanosleep () from /Developer/Projects/ECS/DIGG/Projects/droid/obj/local/armeabi/libc.so
(gdb) Undefined command: "1-inferior-tty-set".  Try "help".
(gdb) Undefined command: "2-gdb-set".  Try "help".
(gdb) Undefined command: "3-gdb-set".  Try "help".
(gdb) Undefined command: "4-file-list-exec-source-files".  Try "help".
(gdb) Undefined command: "5-file-list-exec-source-file".  Try "help".
(gdb) Undefined command: "6-gdb-show".  Try "help".
(gdb) Undefined command: "7-stack-info-frame".  Try "help".
(gdb) Undefined command: "8-thread-info".  Try "help".
(gdb) Undefined command: "9-break-list".  Try "help".

Buffers called *threads of*, *input/output of* and *breakpoints of* are also created, but are empty.

Browsing through the gdb-mi.el source of my emacs, and comparing to the gdb-debug-log output, it looks like gdb-mi is trying to send these parameters to a gdb executable, but gdb-server is not responding to the commands as expected?

Note that running M-x gud-gdb with the command-line for ndk-gdb seems to result in the equivalent of running ndk-gdb within a shell, so the issue seems to be within the configuration of gdb-mode in emacs.

link|improve this question
So my interpretation here is that ndk-gdb gets run correctly, but that emacs' gdb-mode is interpreting commands and not communicating correctly with gdb-server, which is the host-side of the debugging connection. – forksandhope Feb 28 '11 at 16:44
feedback

2 Answers

Have you tried this?

Add android-sdk-mac_x86/platform-tools and android-ndk-r5b to PATH environment. After that, start gdb mode with ndk-gdb script.

M-x gdb
Run gdb (like this): ndk-gdb --verbose --start --project=your_NDK_project_dir
link|improve this answer
well, oddly my PATH environment variable isn't getting picked up by emacs-gdb .. I have to do this '/Developer/android-ndk-r5b/ndk-gdb --verbose --start --adb=/Developer/android-sdk-mac_x86/platform-tools/adb --project=/Developer/Projects/testproj' to get ndk-gdb to run correctly. – forksandhope Feb 28 '11 at 16:28
As you'll see in my edits above, yes, I've tried to run gdb like that, and it does not result in a useful connection between emacs and the gdb-server executable that ndk-gdb runs. Does this work for you? If so, have you done any specific configuration to get it to work? – forksandhope Feb 28 '11 at 17:05
I tried several Emacs versions, Version 23.2 (9.0) works, but Version 24.0.50 (9.0) doesn't work same as your situation (Undefined command: "1-inferior-tty-set"). I don't have any .emacs files, I'm not sure the difference. – Kazuki Sakamoto Feb 28 '11 at 23:59
Can you tell me if both versions are using gdb-mi ? (found in /Applications/Emacs.app/Content/Resources/lisp/progmodes/gdb-mi.el for my Emacs 23.1 install) – forksandhope Mar 1 '11 at 16:40
That's it. Version 23.2 has gdb-ui, Version 24.0.50 has gdb-mi. – Kazuki Sakamoto Mar 2 '11 at 3:53
show 1 more comment
feedback

I had the same problem as you when running gdb under emacs (replacing the command with ndk-gdb): the *gud* window was not responding to commands. However, ndk-gdb was working well in a shell.

To make it work under the emacs gud interface, I had to modify the last line of the ndk-gdb script like so:

$GDBCLIENT --annotate=3 -cd $PROJECT -x `native_path $GDBSETUP`

The --annotate=3 option is mandatory for emacs gud interface, it cannot work without it (that's why *gud* was not responding).

The -cd $PROJECT is for gdb to find the gdb.setup in the project directory. It is needed if you use the gdb command while you're in a buffer from a file which is not at the root of the project (likely so, often you're in a source file in a subdirectory under jni). The ndk-gdb script does not cd to the root directory even if the --project option is given (which I do, since it is not necessarily invoked from there within emacs).

Hope that helps some people, it took me a fair amount of time to fix this. I'm glad now I can finally debug with gud interface, setting breakpoints at source level. Wonderful.

Note that I use emacs 23.3.1 (gdb-ui.el), so there is no need to have 24 for this to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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