Repositories
mainline
-
Cloning this repository:
git clone git://gitorious.org/gdb-python/mainline.git mainline cd mainline
Add this repository as a remote to an existing local repository:
git remote add mainline git://gitorious.org/gdb-python/mainline.git git fetch mainline git checkout -b my-local-tracking-branch mainline/master_or_other_branch
archer-thewtex-python
My work on the PythonGDB project. Emphasis on debugging for scientific computing. more…
A screencast demonstration of visual debugging with custom pretty-printers.
Current work is pushed to archer-thewtex-python-next. Work that has been submitted to the archer mailing list is in archer-thewtex-python.
Build instructions
Clone the repository with git.
mkdir -p ~/apps/archer/{build,install}
cd ~/apps/archer
git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git gdb-python
Configure, compile, install
The project can be built and installed outside of the source directory.
cd ~/apps/archer/build
../gdb-python/configure --prefix=$(cd ../install && pwd)
make all install
In your ~/.bashrc you could put
alias gdb='/home/matt/apps/archer/install/bin/gdb'
Optional: configure gdb to find your local pretty-printers, such as those in gdb-pretty.
If you cloned the repositories to /home/matt/apps/gdb-pretty, then you would populate ~/.gdbinit with
python
import sys
sys.path.insert( 0, '/home/matt/apps/gdb-pretty' )
end
-
Cloning this repository:
git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git archer-thewtex-python cd archer-thewtex-python
Add this repository as a remote to an existing local repository:
git remote add archer-thewtex-python git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git git fetch archer-thewtex-python git checkout -b my-local-tracking-branch archer-thewtex-python/master_or_other_branch

