On Tue, Apr 12, 2011 at 8:32 AM, Nick Coghlan <[email protected]> wrote:
> On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg <[email protected]> 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.
distutil2 is almost identical to distutils as far as compilation goes,
so I am not sure why it would help the OP.
@Lukas: if you want to check for compiler flag support, the best way
to do it in distutils is to use the config support: look in particular
in the try_compile/try_link methods. The schema is basically:
# code may refer to e.g. a trivial extension source code
try_compile(code) # check that the current option set is sane
for each additional flag you are interested:
save compiler option
add the additional flag
if try_compile(code) == 0:
restore compiler option
cheers,
David
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com