on a given NDK application. The application must be debuggable, i.e. its android:debuggable attribute must be set to 'true' in the <application> element of its manifest. See docs/NDK-GDB.TXT for usage description. Essentially, you just need to launch ndk-gdb-py from your application...
# ndk-gdb is installed to $NDK/prebuilt/<platform>/bin NDK_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../..')) sys.path.append(os.path.join(NDK_PATH, "python-packages")) import gdbrunner def log(msg): ...