Damn, I should have spoken up earlier, sorry...
I found out how to get Pd (n32) and pd-goi (o32) running together. The problem in version 0.26 is an un-profiled call to atof() in m_binbuf.c. (The makefile should have complained abouit that but I got the C flags wrong!)
The fix is to change #ifdef N32 #include <malloc.h> #else #include <stdlib.h> #endif
to
#include <stdlib.h>
I don't remember why I put the #ifdefs in in the first place...
cheers Miller