ITK/GDBPretty/Installation/Linux

From KitwarePublic
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Fedora 14 example

Install package dependencies

yum install gcc gcc-c++ git texinfo ncurses-devel

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