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 doko
Recipients Arfrever, doko, ned.deily, ronaldoussoren
Date 2015-05-23.00:22:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432340530.33.0.350394025502.issue23969@psf.upfronthosting.co.za>
In-reply-to
Content
so what you could do is to define more than one SOABI. The code in
 Python/dynload_shlib.c reads:

    "." SOABI ".so",
    ".abi" PYTHON_ABI_STRING ".so",
    ".so",

so it still recognizes .so names. If you want to recognize architecture specific sonames, then you would need something like

    "." "cpython-35m-<cpu>-darwin" ".so",
    "." "cpython-35m-darwin" ".so",
    ".abi" PYTHON_ABI_STRING ".so",
    ".so",

that would prefer to load the most specific so. Unfortunately that would be also seen as the visible soname to build extensions, which is probably not something like you want.

I still would prefer to use darwin instead of macosx, because that's the way config.sub/config.guess recognizes this platform.
History
Date User Action Args
2015-05-23 00:22:10dokosetrecipients: + doko, ronaldoussoren, ned.deily, Arfrever
2015-05-23 00:22:10dokosetmessageid: <1432340530.33.0.350394025502.issue23969@psf.upfronthosting.co.za>
2015-05-23 00:22:10dokolinkissue23969 messages
2015-05-23 00:22:08dokocreate