ITK/GDBPretty/Installation/Linux: Difference between revisions

From KitwarePublic
< ITK‎ | GDBPretty
Jump to navigationJump to search
(Replaced content with "* Fedora 14 * Debian Squeeze")
 
(64 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Fedora 14 example =
* [[ITK/GDBPretty/Installation/Linux/Fedora14 | Fedora 14]]
 
* [[ITK/GDBPretty/Installation/Linux/DebianSqueeze | Debian Squeeze]]
== Install package dependencies ==
 
yum install gcc gcc-c++ git texinfo ncurses-devel flex bison
 
== Build custom GDB ==
 
=== Build it ===
 
cd ~
mkdir gdb
cd gdb
git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git source
mkdir build install
cd build
../source/configure --prefix=$(cd ../install && pwd)
make -j2 all install
 
=== Put it at the top of the system PATH ===
 
su -
cd /usr/local/bin
ln -s /home/user/gdb/install/bin/gdb
exit

Latest revision as of 20:09, 20 November 2010