Python中GDB的模块化可视界面:GDB dashboard

jopen 9年前

Python中GDB的模块化可视界面:GDB dashboard。

This comes as a standalone single-file .gdbinit which, among the other things, enables a configurable dashboard showing the most relevant information during the program execution. Its main goal is to reduce the number of GDB commands issued to inspect the current program status allowing the programmer to focus on the control flow instead.

Installation

Just place .gdbinit in your home directory, for example:

wget -P ~ git.io/.gdbinit

 

Screenshot

特性 

  • Single GDB init file.

  • Interaction with GDB using the native Python API.

  • Several default modules are included to address the most basic needs: source code, assembly, registers, etc.).

  • User-defined modules can be easily developed by extending a Python class.

  • Additional configuration files (both GDB and Python) are read from~/.gdbinit.d/.

  • Fully stylable user interface and dynamic command prompt.

  • No GDB command has been redefined, instead all the features are available as subcommands of the maindashboardcommand.

项目主页:http://www.open-open.com/lib/view/home/1442132486225