Ice-Nine crash

Loading chipmunk for Darwin (32bit) [/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/pymunk-1.0.0-py2.5.egg/pymunk/libchipmunk.dylib]
Illegal instruction

MacOSX 10.4, PPC G4, Python 2.5

(log in to comment)

Comments

I dunno, maybe your pymunk setup is outdated. also my developement python version is 2.6. do you have the traceback?
You're way ahead of me! Can you share the least painful way of installing Chipmunk on a Mac?
- Register on apple and download the XCode Suite
    http://developer.apple.com/technologies/xcode.html

- Download CHIPMUNK sources (svn) from
    http://code.google.com/p/chipmunk-physics

Open and build the project contained in the macosx folder

- Download and compile PYMUNK sources
    http://code.google.com/p/pymunk/

good luck :D
Thanks for the advice! I open Chipmunk.xcodeproj and it has three targets: ChipmunkDemo, ChipmunkStatic and ChipmunkStatic-iPhone. These seem to generate ChipmunkDemo.app or libChipmunk.a, but not libchipmunk.dylib. Can you tell me how to build that? I have practically no idea about Mac development unfortunately.
You can try one of these:

- tweak the project properties to obtain a dynamic library

- try to compile chipmunk via the sources shipped with pymunk package

        > python setup.py build_chipmunk

When you have placed the lib in the ./pymunk subfolder you can proceed to:

        > python setup.py install

PS: i am NOT a mac developer :)
Thank you Stycchio, build_chipmunk worked like a breeze! Now to try all the pymunk games...