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 cdavid
Recipients cdavid, tarek
Date 2009-05-05.09:09:21
SpamBayes Score 3.0206038e-05
Marked as misclassified No
Message-id <1241514562.72.0.325228303224.issue5941@psf.upfronthosting.co.za>
In-reply-to
Content
The customize_compiler function is broken in python 3.1. The archiver
for a 'standard' unix compiler is set as ['ar', '-cr'], but in python
3.*, customize_compiler overwrites self.archiver from
get_sysconfig_var('AR'), and AR is defined as ar, which breaks
create_static_library.

I think the solution is to define a new env variable AR_something or to
set AR to 'ar -rc' (like LDSHARED is set to ['gcc', '-shared'] on gnu
systems, for example).
History
Date User Action Args
2009-05-05 09:09:22cdavidsetrecipients: + cdavid, tarek
2009-05-05 09:09:22cdavidsetmessageid: <1241514562.72.0.325228303224.issue5941@psf.upfronthosting.co.za>
2009-05-05 09:09:21cdavidlinkissue5941 messages
2009-05-05 09:09:21cdavidcreate