I've stepped away from Cython for about a year, and returned on a new computer, needing to recompile some older Cython code I wrote. It has run fine previously.
I'm issuing this command to build my code: : cython mytype_svd.pyx : gcc -shared -pthread -fPIC -fwrapv -O2 -Wall -fno-strict-aliasing -I/usr/include/python2.6 -o mytype_svd.so mytype_svd.c I'm getting the following (very long) error code: http://pastie.org/924882 It seems it's complaining about Python C-api calls not being linked into a rather oddly-named .o file. I'm running Mac OS 10.6.3, Cython 0.12.1, Python 2.6.1, gcc 4.2 (bundled with XCode). Note that I've symlinked the numpy includes folder, as well as the Cython includes folder into the python 2.6 include path. What's going on here? Am I missing some step?
_______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
