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: Do not rely on AC_RUN_IFELSE tests in the configury
Type: Stage:
Components: Cross-Build Versions: Python 3.3
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: doko Nosy List: Arfrever, doko, python-dev
Priority: normal Keywords: patch

Created on 2012-03-15 17:23 by doko, last changed 2022-04-11 14:57 by admin.

Files
File name Uploaded Description Edit
long-long-format.diff doko, 2012-03-15 18:29 long-long-format.diff review
computed-gotos.diff doko, 2012-03-15 18:50 computed-gotos.diff review
buggy-getaddrinfo.diff doko, 2012-03-15 19:36 buggy-getaddrinfo.diff review
profiling.diff doko, 2012-06-30 14:54 review
Messages (8)
msg155918 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-03-15 17:23
AC_RUN_IFELSE tests can't be used in cross builds, and have to fall back to some default in the case of a cross build.  This is a meta issue to collect changes for the conversion of such tests.
msg155928 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-03-15 18:29
when using gcc, use a compilation test for the cross build check for long long format.
msg155934 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-03-15 18:50
when configured --with(out)-computed-gotos for a cross, use this value instead of defaulting to no.
msg155935 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-03-15 18:51
New changeset fbbf9c187662 by Matthias Klose in branch 'default':
- Issue #14324: Fix configure tests for cross builds.
http://hg.python.org/cpython/rev/fbbf9c187662

New changeset 29ee48f843ec by Matthias Klose in branch 'default':
- Issue #14324: Fix configure tests for cross builds.
http://hg.python.org/cpython/rev/29ee48f843ec
msg155945 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-03-15 19:36
when configured with --(en|dis)able-ipv6 for cross builds, don't fail the configury due to the missing buggy-getaddrinfo check.
msg155947 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-03-15 19:42
New changeset 58cd710d9dff by Matthias Klose in branch 'default':
- Issue #14324: Fix configure tests for cross builds.
http://hg.python.org/cpython/rev/58cd710d9dff
msg164383 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-06-30 14:54
use a linker test to check for profiling support (derived from the patch in issue #3754.
msg164384 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-06-30 14:54
New changeset 575efae8ec57 by doko in branch 'default':
- Issue #14324: use a linker test to check for profiling support
http://hg.python.org/cpython/rev/575efae8ec57
History
Date User Action Args
2022-04-11 14:57:28adminsetgithub: 58532
2012-06-30 14:54:48python-devsetmessages: + msg164384
2012-06-30 14:54:13dokosetfiles: + profiling.diff

messages: + msg164383
2012-03-15 22:18:40Arfreversetnosy: + Arfrever
2012-03-15 19:42:32python-devsetmessages: + msg155947
2012-03-15 19:36:36dokosetfiles: + buggy-getaddrinfo.diff

messages: + msg155945
2012-03-15 18:51:59python-devsetnosy: + python-dev
messages: + msg155935
2012-03-15 18:50:45dokosetfiles: + computed-gotos.diff

messages: + msg155934
2012-03-15 18:29:20dokosetfiles: + long-long-format.diff

messages: + msg155928
2012-03-15 17:23:09dokocreate