Issue 14324: Do not rely on AC_RUN_IFELSE tests in the configury (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/58532

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:28 admin set github: 58532
2012-06-30 14:54:48 python-dev set messages: +
2012-06-30 14:54:13 doko set files: + profiling.diffmessages: +
2012-03-15 22🔞40 Arfrever set nosy: + Arfrever
2012-03-15 19:42:32 python-dev set messages: +
2012-03-15 19:36:36 doko set files: + buggy-getaddrinfo.diffmessages: +
2012-03-15 18:51:59 python-dev set nosy: + python-devmessages: +
2012-03-15 18:50:45 doko set files: + computed-gotos.diffmessages: +
2012-03-15 18:29:20 doko set files: + long-long-format.diffmessages: +
2012-03-15 17:23:09 doko create