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 doko, ncoghlan
Date 2015-04-15.19:04:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429124647.47.0.946423694262.issue23968@psf.upfronthosting.co.za>
In-reply-to
Content
Currently there is only one platform directory for all linux architectures, there are two reasons to have a separate directory for each architecture:

 - the contents of the files in this directory differ
   (most prominent case are the RTLD_* constants on various
   architectures).

 - The _sysconfigdata.py module is installed in the platdir.
   A cross build of the extensions in the standard library
   is done by running the python interpreter for the build
   machine with the platdir for the host machine.  This
   currently works for cross builds targeting a different
   os, but not cross building from one linux architecture
   to another.

This would then remove Lib/plat-linux and introduce some Lib/plat-$(PLATFORM_TRIPLET) directories.
History
Date User Action Args
2015-04-15 19:04:07dokosetrecipients: + doko, ncoghlan
2015-04-15 19:04:07dokosetmessageid: <1429124647.47.0.946423694262.issue23968@psf.upfronthosting.co.za>
2015-04-15 19:04:07dokolinkissue23968 messages
2015-04-15 19:04:07dokocreate