ITK/GDBPretty/Installation/Linux: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 3: | Line 3: | ||
== Install package dependencies == | == Install package dependencies == | ||
yum install gcc gcc-c++ git texinfo ncurses-devel flex | yum install gcc gcc-c++ git texinfo ncurses-devel flex bison | ||
== Build custom GDB == | == Build custom GDB == |
Revision as of 07:00, 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 gdb-source mkdir gdb-build gdb-install cd gdb-build ../gdb-source/configure --prefix=$(cd ../gdb-install && pwd) make -j2 all install