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.

作者 rpetrov
收信人 Arfrever, BreamoreBoy, David.Kern, Greg.Hellings, WhiteTiger, eric.araujo, rpetrov, wrobell
日期 2011-05-26.19:50:18
SpamBayes Score 0.0019639807
Marked as misclassified
Message-id <1306439419.74.0.794567024277.issue3754@psf.upfronthosting.co.za>
In-reply-to
内容
At least one is really would like to cross-compile.

worber, the config site has to look like (sample for linux i?86, i.e. intel 32 bit, as host platform)
=================================
ac_cv_little_endian_double=yes
ac_cv_broken_sem_getvalue=no
ac_cv_computed_gotos=yes
ac_cv_buggy_getaddrinfo=no
ac_cv_working_tzset=yes
#next line require fix typo in configure.in
ac_cv_pthread=yes
ac_cv_pthread_system_supported=yes
ac_cv_tanh_preserves_zero_sign=yes

ac_cv_have_long_long_format=yes
ac_cv_file__dev_ptmx=yes
ac_cv_file__dev_ptc=no
=================================

Also with following patch into configure.in
=======================================
diff --git a/configure.in b/configure.in
--- a/configure.in
+++ b/configure.in
@@ -1372,7 +1372,7 @@
 # so we need to run a program to see whether it really made the
 # function available.
 AC_MSG_CHECKING(whether $CC accepts -pthread)
-AC_CACHE_VAL(ac_cv_thread,
+AC_CACHE_VAL(ac_cv_pthread,
 [ac_save_cc="$CC"
 CC="$CC -pthread"
 AC_RUN_IFELSE([AC_LANG_SOURCE([[
=======================================
历史
日期 用户 动作 参数
2011-05-26 19:50:19rpetrov修改recipients: + rpetrov, wrobell, eric.araujo, Arfrever, WhiteTiger, BreamoreBoy, David.Kern, Greg.Hellings
2011-05-26 19:50:19rpetrov修改messageid: <1306439419.74.0.794567024277.issue3754@psf.upfronthosting.co.za>
2011-05-26 19:50:19rpetrov链接issue3754 messages
2011-05-26 19:50:18rpetrov创建