scripts/build/debug/gdbinit.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 24 20:30:52 2011 +0200 (2011-07-24)
changeset 2570 2651341cc084
permissions -rw-r--r--
debug/gdb: install gdbinit sample file

gdb needs to know where to find the libstdc++ helper python script
to do, well, whatever it has to do with it...

We can't install that in the user's ~/.gdbinit, it's too complex to
handle all the cases. Moreover, if the user is using more than one
toolchain, we can't put all that stuff in there...

Just provide a sample config file the user can adapt to his/her
own needs.

Thanks go to Khem RAJ for providing such a hint:
http://sourceware.org/ml/crossgcc/2011-07/msg00026.html

Reported-by: ANDY KENNEDY <ANDY.KENNEDY@adtran.com>
CC: Khem Raj <raj.khem@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2570
     1
python
yann@2570
     2
import sys
yann@2570
     3
sys.path.insert(0, '@@PREFIX@@/share/gcc-@@VERSION@@/python')
yann@2570
     4
from libstdcxx.v6.printers import register_libstdcxx_printers
yann@2570
     5
register_libstdcxx_printers (None)
yann@2570
     6
end