Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.
Bug 104173
Summary: | xmms (and other applications) crash with message libgcc_s.so.1 must be installed for pthread_cancel to work | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux Beta | Reporter: | Keith Lea <keith> |
Component: | glibc | Assignee: | Jakub Jelinek <jakub> |
Status: | CLOSED NOTABUG | QA Contact: | |
Severity: | high | Docs Contact: | |
Priority: | medium | ||
Version: | beta1 | CC: | fweimer, notting |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i686 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2003-09-11 07:39:52 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: | 100643 |
Description
Keith Lea
2003-09-10 18:40:36 UTC
Are you sure you don't have a different (older) libgcc_s.so.1 lurking somewhere in your library search path (if LD_LIBRARY_PATH is used there, if not, in ld.so.cache)? pthread_cancel is trying to dlopen libgcc_s.so.1, which has: _Unwind_Resume __gcc_personality_v0 _Unwind_ForcedUnwind _Unwind_GetCFA symbols exported from it. E.g. strace output (or LD_DEBUG=all dump) could make it clearer what's going on. It looks like I did have another libgcc_s.so.1 in /usr/local/lib, and removing it fixes the crash. Removing /usr/local/lib/libstdc++.* also fixes my GLIBC errors in other applications. I don't know if I'm supposed to resolve the bug, so I won't, but I'm all set now. Thanks for the help. (Any idea why this would happen? This is sort of an old system (I started with RH7.3, so it's not thta old), but I don't remember ever manually installing glibc or gcc or anything.) That really looks like manually installed gcc. Worth looking at this other bug: http://bugzilla.redhat.com/bugzilla/long_list.cgi?buglist=104689 Similar symptoms that boiled down to a problem with NPTL. Solution: export LD_ASSUME_KERNEL=2.4.19 ... before running xmms. Works wonders for me, too! :) |