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.

Author skrah
Recipients Arfrever, doko, skrah
Date 2013-11-25.11:42:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20131125114212.GB2714@sleipnir.bytereef.org>
In-reply-to <1385324828.57.0.175042877818.issue19732@psf.upfronthosting.co.za>
Content
Matthias Klose <report@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.
History
Date User Action Args
2013-11-25 11:42:13skrahsetrecipients: + skrah, doko, Arfrever
2013-11-25 11:42:13skrahlinkissue19732 messages
2013-11-25 11:42:13skrahcreate