I complied the dynamic implicit link library using the source code from this Web. There are problems when using gsl random library. It might be a bug since I also tried some other libraries (gsl_vector, gsl_matrix)without finding such error report.
Any suggestions? thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
An unresolved symbol means that you're not getting the symbol into your link library. How are you creating the link library? gsl_rng_default is in the .def file included with the source and the header appears set up fine. What compiler/linker are you using?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
_gsl_rng_d is not a gsl symbol, so it is not surprising that it is not found in the library. gsl_rng_default is the closest symbol I found. Did you find some use of _gsl_rng_d in the gsl documentation or examples? Where did it come from?
Thanks,
Jerry
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I complied the dynamic implicit link library using the source code from this Web. There are problems when using gsl random library. It might be a bug since I also tried some other libraries (gsl_vector, gsl_matrix)without finding such error report.
Any suggestions? thanks
An unresolved symbol means that you're not getting the symbol into your link library. How are you creating the link library? gsl_rng_default is in the .def file included with the source and the header appears set up fine. What compiler/linker are you using?
_gsl_rng_d is not a gsl symbol, so it is not surprising that it is not found in the library. gsl_rng_default is the closest symbol I found. Did you find some use of _gsl_rng_d in the gsl documentation or examples? Where did it come from?
Thanks,
Jerry
It is a typo. what I want to say is gsl_rng_default.
I have tested some other random generators, don't work.
come up with last post.
David Geldreich's static library do work.