Stefan Krah added the comment:

Matthias Klose <rep...@bugs.python.org> wrote:
> 2.4~rc1:
>  - configure.ac should call AC_CANONICAL_HOST, config,guess and
>    config.sub should be included.

Hmm. configure.ac doesn't use any of the variables set by that macro, and this
appears to work:

./configure --host=arm CC=arm-linux-gnueabi-gcc-4.7

>  - there are still symbols which exists only for 32/64 bit archs.
>    intended?
>    (arch=@64@)mpd_qsset_i64@Base 2.3
>    (arch=@64@)mpd_qsset_u64@Base 2.3
>    (arch=@64@)mpd_sset_i64@Base 2.3
>    (arch=@64@)mpd_sset_u64@Base 2.3

That's on purpose:  These are low level functions that are supposed to set
static decimals as fast as possible.  A static mpd_t has a guaranteed
minimum allocation of two words for the coefficient. The 32-bit version
needs three words for UINT64_MAX, so they aren't available.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19732>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to