Releases: cbiesinger/JsDbg
JsDbg for GDB release 0.8.9
This release comes with updates to extensions and better tested Python 2 support, as well as a .deb package for easier installation.
Installation instructions for the .deb package (Debian/Ubuntu):
sudo apt install ./jsdbg_0.8.9-1_amd64.debInstallation instructions for the .tar.bz2 file:
cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOFThen, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.
JsDbg for GDB release 0.8.8
This release makes JsDbg work with Python 2, though this is not tested much.
Installation instructions:
cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOFThen, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.
JsDbg for GDB release 0.8.7
Installation instructions:
cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOFThen, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.
JsDbg for GDB release 0.8.5
Installation instructions:
cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOFThen, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.
JsDbg for GDB release 0.8
Installation instructions:
cd ~
tar xjf jsdbg.tar.bz2
cat <<EOF >> ~/.gdbinit
python
import sys
sys.path.insert(0, "<your home directory>/jsdbg")
import JsDbg
end
EOFThen, whenever you want to use JsDbg, break into the program and type "jsdbg" in gdb.