NOTE: This is no longer necessary with Snow Leopard.

To compile 64 bit python on Mac

%%prettify 
{{{
$ env CFLAGS='-arch x86_64' CPPFLAGS='-arch x86_64' LDFLAGS='-arch x86_64' \
./configure --disable-toolbox-glue --prefix=/usr/local64
$ make
$ make install
}}}
/%

or

%%prettify 
{{{
$ CC='gcc -m64' LDFLAGS=-m64 ./configure --disable-toolbox-glue --prefix=/usr/local64

}}}
/%
----
[CategoryArchived] / [CategoryArchived.Computing] / [CategoryArchived.Computing.Lang] / [CategoryArchived.Computing.Lang.Python] / [CategoryArchived.Computing.Lang.Python.Mac]