ITK/GDBPretty/Installation/Linux

From KitwarePublic
< ITK‎ | GDBPretty
Revision as of 06:33, 17 November 2010 by Thewtex (talk | contribs)
Jump to navigationJump to search

Fedora 14 example

Install package dependencies

yum install gcc gcc-c++ git

Build custom GDB

cd ~
mkdir gdb
cd gdb
git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git gdb-source
mkdir gdb-build gdb-install
cd gdb-build
../gdb-source/configure --prefix=$(cd ../gdb-install && pwd)
make -j2 all install