[Bug 128538] Re: Qt4/gdb: Cannot step into Qt4 functions

2008-10-27 Thread Tero Keinänen
*** This bug is a duplicate of bug 261380 *** https://bugs.launchpad.net/bugs/261380 ** This bug has been marked a duplicate of bug 261380 Packages have invalid .gnu_debuglink -- Qt4/gdb: Cannot step into Qt4 functions https://bugs.launchpad.net/bugs/128538 You received this bug

[Bug 128538] Re: Qt4/gdb: Cannot step into Qt4 functions

2008-04-19 Thread Gabriel de Perthuis
Can't resist posting my own tweaked command: for ld in $( dpkg -L libqt4-debug | grep '\.debug$' ); do l=${ld%.debug}; sudo objcopy -R .gnu_debuglink --add-gnu-debuglink=$ld $l; done -- Qt4/gdb: Cannot step into Qt4 functions https://bugs.launchpad.net/bugs/128538 You received this bug

[Bug 128538] Re: Qt4/gdb: Cannot step into Qt4 functions

2007-11-09 Thread Sergey Tachenov
Looketh like .gnu_debuglink sections of the libraries are screwed up for whatever reason--they are pointing to the libraries themselves rather than to the libQt*.debug files. Running as root something like: cd /usr/lib for i in libQt*.4.3.2; do objcopy -R .gnu_debuglink $i objcopy