Bug 729000
Summary: | Failed to find the .debug_info section in a debuginfo file | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 6 | Reporter: | Karel Klíč <kklic> |
Component: | nfs-utils-lib | Assignee: | Steve Dickson <steved> |
Status: | CLOSED DUPLICATE | QA Contact: | Filesystem QE <fs-qe> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 6.3 | CC: | rvokal, syeghiay |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2014-05-01 21:18:14 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 727919 |
Description
Karel Klíč
2011-08-08 15:18:57 UTC
This request was evaluated by Red Hat Product Management for inclusion in the current release of Red Hat Enterprise Linux. Because the affected component is not scheduled to be updated in the current release, Red Hat is unable to address this request at this time. Red Hat invites you to ask your support representative to propose this request, if appropriate, in the next release of Red Hat Enterprise Linux. I'm not understanding what the problem is here or how to fix it... Can you be a bit more explicit as to what you are asking for? Hi Steve, /usr/lib/debug/usr/lib/libnfsidmap/umich_ldap.so.debug is supposed to contain debugging symbols for umich_ldap.so shared library, but it doesn't contain them. This is usually caused by a missing compiler/linker flag -g during the package build. Is nfs-utils-lib build with -g? Ideally, $RPM_OPT_FLAGS, which includes -g, are added to the compiler flags. So something like this: diff --git a/nfs-utils-lib.spec b/nfs-utils-lib.spec index fa152a5..7c06576 100644 --- a/nfs-utils-lib.spec +++ b/nfs-utils-lib.spec @@ -72,7 +72,8 @@ mv %{librpcsecgss}-%{rpcsecgssvers} %{librpcsecgss} pushd %{libnfsidmap} ./autogen.sh -%configure +CFLAGS="`echo $RPM_OPT_FLAGS $ARCH_OPT_FLAGS -fno-strict-aliasing`" +%configure CFLAGS="$CFLAGS" make %{?_smp_mflags} all popd *** This bug has been marked as a duplicate of bug 594279 *** |