ITK/GDBPretty/Installation/Linux

From KitwarePublic
< ITK‎ | GDBPretty
Revision as of 06:36, 17 November 2010 by Thewtex (talk | contribs)
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

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