https://github.com/mddubey/node_webkit_gdb
A user interface for GNU C Debugger GDB.
https://github.com/mddubey/node_webkit_gdb
debugger-gdb gdb javascript node-webkit
Last synced: 5 months ago
JSON representation
A user interface for GNU C Debugger GDB.
- Host: GitHub
- URL: https://github.com/mddubey/node_webkit_gdb
- Owner: mddubey
- Created: 2013-12-04T11:26:58.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T16:46:44.000Z (almost 5 years ago)
- Last Synced: 2024-04-14T19:59:01.464Z (over 1 year ago)
- Topics: debugger-gdb, gdb, javascript, node-webkit
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node_webkit_GDB
A user interface for GNU C Debugger GDB.
###Last Working
* fef0800bcd3bddb03fffc77e104906a4e562fd88
###Prerequisites
* gcc
* gdb
* nodewebkit(now known as nw) globally installed
#How to use
Below are the steps to use this tool. A file named `sum.c` is given within the project directory, all the steps are shown using that.
* Create a executable of your c file with given command below `gcc -g -o sum.exe sum.c`.
* It will generate `sum.exe` file.
* Run `nodewebkit` command from root directry of this project.
* It will ask you to choose a file, choose the exe file generated in above steps, and click on `load exe`.
#####Note:-
On OSX you need to codesign your gdb installation. You can follow [this](https://www.patosai.com/posts/2015/03/24/installing-gdb-on-os-x-yosemite) tutorial.