On Tue, 19 Jul 2011 13:45:09 -0400, Ian Ward wrote: > [email protected] wrote on 2011-07-19 12:45: >> /usr/libexec/gcc/powerpc-apple-darwin10/4.2.1/as: assembler >> (/usr/bin/../libexec/gcc/darwin/ppc/as or >> /usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc >> not >> installed > > Maybe osx binaries (or python extensions) need both ppc and intel > versions of compiled code.
I found the trick here: http://stackoverflow.com/questions/5256397/python-easy-install-fails-with-assembler-for-architecture-ppc-not-installed-on which basically amounts to manually setting the arch by doing the following... sudo env ARCHFLAGS="-arch i386" easy_install whatever There is probably some more standard way to set this up in setup.py so it would do the right thing without setting the arch manually, but that would be beyond my python knowledge at this point. I'm sure someone with more expertise and a google search could figure it out easily. I would be more then happy to test changes. _______________________________________________ Urwid mailing list [email protected] http://lists.excess.org/mailman/listinfo/urwid
