ITK/GDBPretty/Installation/Linux: Difference between revisions

From KitwarePublic
< ITK‎ | GDBPretty
Jump to navigationJump to search
Line 95: Line 95:
Install dependencies,
Install dependencies,


  yum install gengetopt qt-devel wget
  yum install gengetopt qt-devel wget cmake mesa-libGL-devel libXt-devel mesa-libOSMesa-devel


Build VTK 5.6 from source.
Build VTK 5.6 from source.

Revision as of 21:10, 17 November 2010

Fedora 14 example

Install package dependencies

yum install gcc gcc-c++ git texinfo ncurses-devel flex bison python-devel

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
make install

Put it at the top of the system PATH

su -
cd /usr/local/bin
ln -s /home/user/gdb/install/bin/gdb
exit

Replace user with your username.

Logout and login to a new shell to ensure the system follows the new path.

Install custom pretty-printers

Basic pretty-printers

yum install python-matplotlib cmake

Place the following in ~/.gdbinit

#
# C++ related beautifiers (optional)
#
set print pretty on
set print object on
set print static-members on
set print vtbl on
set print demangle on
set demangle-style gnu-v3
set print sevenbit-strings off
set multiple-symbols ask
# working with arrays
set print array on
set print elements 70

#
# gdb-pretty
#
python
import sys
sys.path.insert( 0, '/home/user/gdb/gdb-pretty' )
sys.path.insert( 0, '/home/user/gdb/gdb-pretty/itk/source' )
import gdb.pretty
gdb.pretty.register( 'libstdcxx.v6.printers', None )
end

require command view
require command alias

Replace user with your username.

mkdir ~/gdb/gdb-pretty

libstdcxx pretty-printers

cd ~/gdb/gdb-pretty
git clone http://git.gitorious.org/gdb-pretty/gdb-pretty-libstdcxx.git libstdcxx

Try running the example

cd libstdcxx/examples
less readme.rst
...

Science related pretty-printers

Pretty printers in the Fedora repository

yum install Mayavi paraview

Install VV

Instructions on the VV homepage.

Install dependencies,

yum install gengetopt qt-devel wget cmake mesa-libGL-devel libXt-devel mesa-libOSMesa-devel

Build VTK 5.6 from source.

cd ~/
wget http://www.vtk.org/files/release/5.6/vtk-5.6.1.tar.gz
tar xvzf vtk-5.6.1.tar.gz
mkdir VTK/build
cd VTK/build
cmake -DVTK_USE_QT=ON -DBUILD_TESTING=OFF ..


Download and build vv. Copy the executable to the system PATH, e.g.

yum install gengetopt  qt-devel
mkdir ~/bin
cp vv ~/bin/

GDB setup

cd ~/gdb/gdb-pretty
git clone http://git.gitorious.org/gdb-pretty/gdb-pretty-science.git science
cd science
mkdir build
cmake -DCMAKE_INSTALL_PREFIX=~/gdb/install ..
make install

ITK pretty-printers

cd ~/gdb/gdb-pretty
git clone git://gitorious.org/gdb-pretty/gdb-pretty-itk.git itk

Try running the example

cd itk/examples
less readme.rst