[issue10262] Add --disable-abi-flags option to `configure`

Amaury Forgeot d'Arc report at bugs.python.org
Mon Nov 29 13:10:30 CET 2010


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

I agree with the intent: package maintainers, or people compiling python for their own need, should have the right to choose the suffix used by extension modules.

I suggest another option though, one that directly sets the SOABI used in extension file names. This would override both the default SOABI (python3.2) and the flags added to it.
For example, when no flag is passed to ./configure, the default is equivalent to 
    --soabi=cpython3.2m
And we can get the 2.x naming scheme back simply with:
    --soabi=
Yes, this flag should be only used when you know what you are doing.  This builds a version of python that will be unable to load extensions built by other people.

----------
nosy: +amaury.forgeotdarc

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10262>
_______________________________________


More information about the Python-bugs-list mailing list