ITK/GDBPretty/Installation/Linux: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 10: | Line 10: | ||
mkdir gdb | mkdir gdb | ||
cd gdb | cd gdb | ||
git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git | git clone git://gitorious.org/~thewtex/gdb-python/archer-thewtex-python.git source | ||
mkdir | mkdir build install | ||
cd | cd build | ||
../ | ../source/configure --prefix=$(cd ../install && pwd) | ||
make -j2 all install | make -j2 all install |
Revision as of 07:10, 17 November 2010
Fedora 14 example
Install package dependencies
yum install gcc gcc-c++ git texinfo ncurses-devel flex bison
Build custom GDB
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