I need to compile 64 bit libraries for Python (SIP for example) instead 32-bit, compiled by my old 32bit Mac for using to .app bandle at new Macs.
Looks like similar question placed here Is it possible to compile a 64 bit executable on a 32 bit system under Ubuntu?
but is looks like a very slow-tuning way, but I need a MANY libs to rebuild - by reason a creation a standalone application with py2app.
All I found that downgrade this kind of process - from 64 to 32 like
# python configure.py --arch=i386 -d /Library/Python/2.6/site-packages
From here http://www.oak-tree.us/blog/index.php/2009/05/12/pyqt-mac
but
# python configure.py --arch=x86_64 -d /Library/Python/2.6/site-packages
at 32 bit system - would not helps - after replacing the sip.so in the app bundle to just-compiled file I get the same error "sip.so: mach-o, but wrong architecture"
Thanks for any assistance!