On Wed, Sep 9, 2009 at 7:28 PM, Nathan <[email protected]> wrote:
> > On Wed, Sep 9, 2009 at 3:42 PM, John Lehmann<[email protected]> wrote: > > > > All I had to do was follow the step in > > > > http://tr.im/yhW8 > > > > defaults write com.apple.versioner.python Prefer-32-Bit -bool yes > > > > But I likely had a 32-bit python 2.6 already installed. > > > > The 32-bit python from python.org is the one that pyglet is actually > already working with for me. I did go and try that method out to see > if I could get twisted to install from setup.py the same way, but no > luck on that one (see below for the output). > > I got twisted manually copied into the 32-bit python, but it > apparently depends on zope interface, which I will go and find and > download and try to get manually installed next. (Off-topic: Nothing > like manually dealing with dependencies to bring back memories of the > olden days of linux...) > > ~ Nathan > > ---- > > $ defaults write com.apple.versioner.python Prefer-32-Bit -bool yes > $ sudo /Library/Frameworks/Python.framework/Versions/2.6/bin/python > setup.py install > running install > running build > running build_py > running build_ext > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 > -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 > -c conftest.c -o conftest.o > This is what I was talking about - system gcc doesn't respect the -arch i386 option. The only way I got it to work bas by manually aliasing gcc and g++ to their 32-bit versions. -- Tristam MacDonald http://swiftcoder.wordpress.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
