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?

link|improve this question

BTW: my C compiler is gcc-4.2. – Wesley Nov 18 '11 at 3:38
How did you install libgsl? – Ned Deily Nov 18 '11 at 4:03
I downloaded GSL from www.gnu.org/s/gsl and then did ./configure --disable-shared, make, make install. – Wesley Nov 18 '11 at 14:48
Are you sure you compiled GSL for x86_64 and not ordinary x86? – MBober Nov 18 '11 at 18:17
I'm not sure, but it was compiled on a x86_64 system, so it would seem natural that it compiled for x86_64. – Wesley Nov 18 '11 at 18:24
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.