Hello, we beta testers,
Since some of us have already known that the new automatic bug report tool will download several debuginfo package to generate the back-trace. The interesting point is that I can not find those debuginfo packages once finishing the report.They are not even presented in yum.log nor
Code:
rpm -qa | grep debuginfo
.
I am trying to get the debug version of httpd so I can use it in conjunction with gdb. I am having a hard time getting them, and they don't seem to be in the standard epel-debuginfo repository.
The reason that going through debuginfo-install doesn't work is that the debuginfo repository is called 'debug' and the debuginfo-install script only enables repositories with names ... [by breun]
Ok, so i've seen the posts and the bugs explaining that there's apparently no debuginfo packages for CentOS 6 at the moment, but does anybody know when they might show up, or how I might ... [by Bittys]
Hi
I want to try systemtap and started its installation as given in http://sourceware.org/systemtap/wiki/SystemtapOnFedora.
I have mentioned -g option along with -Wall in the Makefile.
When I run gdb onlineSunday, I get:
Missing separate debuginfo for /usr/lib64/kde4/plugins/imageformats/kimg_dds.so
Try: zypper install -C "debuginfo(build-id)=a84a1969b9a69361b10f26814c0958717c48d671"
Missing separate debuginfo for /usr/lib64/kde4/plugins/imageformats/kimg_eps.so
Try: zypper install -C "debuginfo(build-id)=81e00b39aa9
in gdb I got the following message:
Code:
Missing separate debuginfo for /lib/libexpat.so.1
Try: zypper install -C "debuginfo(build-id)=4c9094e904a907f317c443e98f72629416ff6e19"
When I try it I get "not found. Resolving package dependencies... Nothing to do."
I have debug repos and installed a couple of missing debuginfos but this one.
In my simple quest to enable the playing of MP3's on my Fedora 12 installation, I arrived at the suggestion that I need to add some third party repositories for yum. Namely, rpmfusion.
After installing this repo, here is the state of my system:
Code:
[root@localhost ~]# yum repolist all
Loaded plugins: presto, priorities, refresh-packagekit
Hello, I am running Fedora 17 i686 on an hp nc630 and doing some C development with the idea of using gdb as a debugger. Currently I am compiling everything with the -g -ggdb option as I've done previously (and with success in various other linux distro's).