ITK/GDBPretty/Installation/Linux
From KitwarePublic
< ITK | GDBPretty
Jump to navigationJump to search
Revision as of 06:44, 17 November 2010 by Thewtex (talk | contribs) (→Install package dependencies)
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