[Python-Dev] Shorter float repr in Python 3.1?
Mark Dickinson
dickinsm at gmail.com
Tue Apr 14 14:40:36 CEST 2009
On Tue, Apr 14, 2009 at 9:45 AM, Ned Deily <nad at acm.org> wrote:
> FIrst attempt was a fat (32-bit i386 and ppc) build on 10.5 targeted for
> 10.3 and above; this is the similar to recent python.org OSX installers.
What's the proper way to create such a build? I've been trying:
./configure --with-universal-archs=32-bit --enable-framework
--enable-universalsdk=/ MACOSX_DEPLOYMENT_TARGET=10.5
but the configure AC_C_BIGENDIAN macro doesn't seem to pick up
on the universality: the output from ./configure contains the line:
checking whether byte ordering is bigendian... no
I was expecting a "... universal" instead of "... no".
>From reading the autoconf manual, it seems as though AC_C_BIGENDIAN
knows some magic to make things work for universal builds; it ought to be
possible to imitate that magic somehow.
Mark
More information about the Python-Dev
mailing list