Skip to content

Commit 61d6453

Browse files
author
Chad Smith
committed
add support for osx
1 parent f3b7d4c commit 61d6453

File tree

7 files changed

+13
-12
lines changed

7 files changed

+13
-12
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A browser-based frontend/gui for GDB
88
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
99
:target: https://travis-ci.org/cs01/gdbgui
1010

11-
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.2-blue.svg
11+
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.3-blue.svg
1212
:target: https://pypi.python.org/pypi/gdbgui/
1313

1414
.. image:: https://img.shields.io/badge/python-2.7, 3.4, 3.5, pypy-blue.svg
@@ -32,7 +32,7 @@ A modern, browser-based frontend to gdb (gnu debugger). Add breakpoints,
3232
view stack traces, and more in C, C++, Go, and Rust! Simply run
3333
``gdbgui`` from the terminal and a new tab will open in your browser. `Screenshots <https://github.com/cs01/gdbgui#screenshots>`_ are below.
3434

35-
Install (tested on Linux only)
35+
Install
3636
------------------------------
3737

3838
::
@@ -100,7 +100,7 @@ other environments as well.
100100

101101
Python versions: 2.7, 3.4, 3.5, pypy
102102

103-
Operating systems: Ubuntu 14.04, Ubuntu 16.04
103+
Operating systems: Ubuntu 14.04, Ubuntu 16.04, OSX
104104

105105
Browsers: Chrome, Firefox, Ubuntu Web Browser
106106

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Release v\ |version|
1111
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
1212
:target: https://travis-ci.org/cs01/gdbgui
1313

14-
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.2-blue.svg
14+
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.3-blue.svg
1515
:target: https://pypi.python.org/pypi/gdbgui/
1616

1717
.. image:: https://img.shields.io/badge/python-2.7, 3.3, 3.4, 3.5, pypy-blue.svg

examples/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
git clone https://github.com/cs01/gdbgui.git
44
cd gdbgui/examples
5-
make [c | cpp | go | rust]
5+
make [c | cpp | go | rust | python]
66

7-
Running the above commands will
7+
Running `make` in the above commands will
88

99
* build the binary (assuming you have the right compilers and libraries installed)
1010
* open a new tab in your browser
1111
* load the inferior binary
12-
* insert a breakpoint at main
12+
* insert a breakpoint at main (Rust and Go users, see note)
1313

1414
Note: go and rust programs will show an error trying to load file "main" because gdb does not know how to determine source files from function names for go/rust. Choose a file from the dropdown, then add a breakpoint and hit run. It will then hit the "main" breakpoint, so you must press the continue button to hit your breakpoint. To avoid this, turn off the `Auto add breakpoint to main` option in Settings.
15+
1516
Note: Although the program has loaded, you still must click the run icon to actually begin running the program.

gdbgui/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.4.2
1+
0.7.4.3

gdbgui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__title__ = 'gdbgui'
2-
__version__ = '0.7.4.2'
2+
__version__ = '0.7.4.3'
33
__author__ = 'Chad Smith'
44
__copyright__ = 'Copyright Chad Smith'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Flask==0.12
2-
pygdbmi==0.7.3.0
2+
pygdbmi==0.7.3.2
33
pypugjs==4.2.0
44
Flask-SocketIO==2.8.4
55
eventlet==0.20.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(self):
2626

2727
setup(
2828
name='gdbgui',
29-
version='0.7.4.2',
29+
version='0.7.4.3',
3030
author='Chad Smith',
3131
author_email='grassfedcode@gmail.com',
3232
description=('browser-based gdb frontend using Flask and JavaScript to visually debug C, C++, Go, or Rust'),
@@ -48,7 +48,7 @@ def run(self):
4848
cmdclass={'test': TestCommand},
4949
install_requires=[
5050
'Flask>=0.12',
51-
'pygdbmi>=0.7.2.1',
51+
'pygdbmi>=0.7.3.2',
5252
'pypugjs>=4.2.0',
5353
'Flask-SocketIO>=2.8.3', # for websockets
5454
'eventlet>=0.20.1', # for websockets

0 commit comments

Comments
 (0)