Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-13 Thread Nick Coghlan
On Thu, Apr 14, 2011 at 3:04 AM, R. David Murray wrote: > As I read it, Nick's thought wasn't that distutils2 would help the OP, > but that the OP could help Distutils2 and the community by taking his > use case to the developers and making sure that that use case is > supported before the release

Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-13 Thread R. David Murray
On Wed, 13 Apr 2011 12:25:59 +0900, David Cournapeau wrote: > On Tue, Apr 12, 2011 at 8:32 AM, Nick Coghlan wrote: > > On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg > > wrote: > >> Any other ideas on how to solve this in a better way? > > > > Have you tried with distutils2? If it can't help you,

Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-12 Thread David Cournapeau
On Tue, Apr 12, 2011 at 8:32 AM, Nick Coghlan wrote: > On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg wrote: >> Any other ideas on how to solve this in a better way? > > Have you tried with distutils2? If it can't help you, it should really > be looked into before the packaging API is locked for 3.3

Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-12 Thread Éric Araujo
Hi, I'm the maintainer of Pyrit (http://pyrit.googlecode.com) and recently checked in some code that uses the AES-NI intrinsics found in GCC 4.4+. I'm looking for a way how to build the python-extension using distutils in a sane way and could not get an answer from the distutils-people about th

Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-12 Thread Lukas Lueg
Distutils2 is not really an option right now as it is not found on major Linux distributions, FreeBSD or MacOS X 2011/4/12 Nick Coghlan : > On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg wrote: >> Any other ideas on how to solve this in a better way? > > Have you tried with distutils2? If it can't h

Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-11 Thread Nick Coghlan
On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg wrote: > Any other ideas on how to solve this in a better way? Have you tried with distutils2? If it can't help you, it should really be looked into before the packaging API is locked for 3.3. Cheers, Nick. -- Nick Coghlan   |   ncogh...@gmail.com  

[Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-11 Thread Lukas Lueg
Hi, I'm the maintainer of Pyrit (http://pyrit.googlecode.com) and recently checked in some code that uses the AES-NI intrinsics found in GCC 4.4+. I'm looking for a way how to build the python-extension using distutils in a sane way and could not get an answer from the distutils-people about that.