Hi, i read this today(regarding chipmunk):
If you are getting cpv() in the trace it's because it's not compiled with inlining enabled. That should actually be a pretty sizable performance hit. You should also make sure that you are compiling with the -ffast-math flag and that you are disabling thumb compilation at least for the Chipmunk sources. Enabling both of those will probably give you another very sizable bump in speed.
I was wondering how to do this:
- compile with inlining enabled
- compile with -ffast-math flag
Could you tell me please?
Thanks