is there a repository of build symbols for the various packages i have installed on my CentOS 5 server?
here's a use case
- i'm developing an apache/httpd plugin module - it's not loading properly - i want to run apache in single-process mode (httpd -X), attach gdb to it, set a break point just before my module is loaded, and step through the code to find out why my module is not being loaded properly.
ideally, i could do something like so:
yum install httpd-symbols
(same question for any/all packages on my server, not just httpd).
thanks --tom