This question is about using the GNU Scientific Library's random number generators in Cython (under Python 3.2) on a Mac OSX 10.7 (Lion) system.
Since Lion is a 64-bit OS, the installer gave me a 64-bit version of Python. I have successfully installed Cython (v0.15.1) and numpy (v1.6.1).
I want to replicate Flavio Coelho's example from here, using C libraries to get the "Python" code to run at C speed. It seems that the way Flavio uses the Gnu Scientific Library's random number generator does not work (for me!) in a 64-bit environment. Here is the error message that I get during compilation (actually, I think it arises after compilation, during linking, but I am no expert in C):
Undefined symbols for architecture x86_64:
"_gsl_rng_mt19937", referenced from:
_PyInit_cgibbs in cgibbs.o
"_gsl_rng_alloc", referenced from:
_PyInit_cgibbs in cgibbs.o
ld: symbol(s) not found for architecture x86_64
Can someone tell me how to fix it?
www.gnu.org/s/gsland then did./configure --disable-shared,make,make install. – Wesley Nov 18 '11 at 14:48