gdbgui/README.md

37 lines
815 B
Markdown
Raw Normal View History

2016-09-26 07:34:30 +02:00
[![Build Status](https://travis-ci.org/cs01/gdbgui.svg?branch=master)](https://travis-ci.org/cs01/gdbgui)
# A browser-based gui for GDB
The goal of this project is to reduce the learning curve of GDB to zero, including autocompletion and documentation of all commands.
2016-09-26 07:34:30 +02:00
Made with a lightweight Python server (Flask), and JavaScript for the frontend. Simply run the server, then view the page. Tested on Ubuntu 16.04 with Chrome.
## Installation and Use
Either
pip install gdbgui
Or
2016-09-26 07:34:30 +02:00
git clone https://github.com/cs01/gdbgui
pip install -r gdbgui/requirements.txt
Then
python -m gdbgui.backend
2016-09-26 07:34:30 +02:00
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
Then open `http://127.0.0.1:5000/` in a browser and enjoy!
## Compatibility
Tested on Python versions
2016-09-26 07:34:30 +02:00
* 2.7
* 3.3
* 3.4
* 3.5
* pypy