May 19, 2009
11:48 p.m.
Hi Adam, On 17-Apr-09, at 12:38 PM, Keflavich wrote:
can't get a 64-bit version of python compiled and google has been unhelpful in resolving the problem. Is there a workaround to get 64
I have had a lot of success with (using the 2.6.2 sources) mkdir -p build && cd build && ./configure --with-framework- name=Python64 --with-universal-archs=all --enable-framework --enable- universalsdk=/ MACOSX_DEPLOYMENT_TARGET=10.5 && make && sudo make install That builds a 4-way universal binary. --with-universal-archs=64-bit will get you just the 64 bit stuff (note that a few of the make install steps will fail because of Carbon deprecation but nothing important as far as I can see). David