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 dpeterson
Recipients dpeterson
Date 2009-02-02.18:28:10
SpamBayes Score 1.7661628e-07
Marked as misclassified No
Message-id <1233599293.13.0.516383193111.issue5132@psf.upfronthosting.co.za>
In-reply-to
Content
I've had trouble building Python extensions on Solaris if the Python
install I'm using was built with the '--enable-shared' option.   In
tracking this down, it appears that the code in
'distutils/command/build_ext.py' contains a number of statements to
detect a similar situation for other platforms and explicitly add the
'lib' dir option for the linker, but there is no similar detection for
Solaris.

I've attached a patch that fixes this and solves the problem for me.  I
simply extended the checking for 'linux' and 'gnu' platforms to also
apply for 'sunos' platforms.
History
Date User Action Args
2009-02-02 18:28:13dpetersonsetrecipients: + dpeterson
2009-02-02 18:28:13dpetersonsetmessageid: <1233599293.13.0.516383193111.issue5132@psf.upfronthosting.co.za>
2009-02-02 18:28:11dpetersonlinkissue5132 messages
2009-02-02 18:28:11dpetersoncreate