This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jeremy.Huntwork
Recipients Jeremy.Huntwork
Date 2014-06-01.03:28:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401593302.24.0.994822187168.issue21622@psf.upfronthosting.co.za>
In-reply-to
Content
On my system, the C library (musl) intentionally does not include a SONAME entry.

This method in particular fails: http://hg.python.org/cpython/file/076705776bbe/Lib/ctypes/util.py#l133

The function seems to jump through some hoops which may not be necessary. Is there a reason for wanting particularly to use the SONAME entry for the lib?

In my system the following works as a replacement for _get_soname:

return os.path.basename(os.path.realpath(f))
History
Date User Action Args
2014-06-01 03:28:22Jeremy.Huntworksetrecipients: + Jeremy.Huntwork
2014-06-01 03:28:22Jeremy.Huntworksetmessageid: <1401593302.24.0.994822187168.issue21622@psf.upfronthosting.co.za>
2014-06-01 03:28:21Jeremy.Huntworklinkissue21622 messages
2014-06-01 03:28:20Jeremy.Huntworkcreate