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.

classification
Title: better cross-compilation support
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: loewis Nosy List: gvanrossum, loewis, nobody, walrusmonkey
Priority: normal Keywords: patch

Created on 2001-06-15 19:48 by walrusmonkey, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py-configure.in.udiff walrusmonkey, 2001-06-15 19:52 unified diff of configure.in
Messages (5)
msg36820 - (view) Author: michael shiplett (walrusmonkey) Date: 2001-06-15 19:48
configure.in uses AC_TRY_RUN in several places without allowing for cached values to allow for cross-compilation. this patch uses the same approach as other parts of configure.in use.
msg36821 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-06-28 18:24
Logged In: NO 

Useful patch. I used it to compile python 2.0.1 for the
Agenda VR3 PDA.
msg36822 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2001-08-08 20:45
Logged In: YES 
user_id=21627

Looks good to me; I'll review it in detail and check it in 
unless I find problems.
msg36823 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-08-08 20:57
Logged In: YES 
user_id=6380

I appreciate this work!

Note that it currently doesn't apply cleanly.  configure.in
is always changing...
msg36824 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2001-08-09 10:32
Logged In: YES 
user_id=21627

Committed as configure.in 1.241, configure 1.231.

The USABLE_WCHAR_T test is gone now, so that chunk doesn't
apply anymore. I think a few additional AC_TRY_RUNs have
been added, so we'd appreciate if you could provide further
corrrections.

Also, if you have a way to kill the autoconf messages
AC_TRY_RUN called without default to allow cross compiling

that would be much appreciated.
History
Date User Action Args
2022-04-10 16:04:08adminsetgithub: 34635
2001-06-15 19:48:39walrusmonkeycreate