[EMAIL PROTECTED] writes: > > Hello, > > I was having problems allocating a random number generator > using the random > number generator algorithm gsl_rng_taus2 in GSL 1.7. When > I change it > to some other random number generator other than > gsl_rng_taus2 my program > would work. Using this random number generator algorithm > produces in the > following error in my program: > > "undefined symbol: gsl_rng_taus2" > > I have linked with the proper libraries during compilation > as my makefile does > this automatically: i.e: > -L/usr/local/gsl-1.7/lib -lgsl -lgslcblas -lm > > along with included the following directory: > -I/usr/local/gsl-1.7/include > > I have set the environment variable: > setenv LD_LIBRARY_PATH /usr/local/gsl-1.6/lib
Use the 'nm' command to see if gsl_rng_taus2 is defined in the library (libgsl.a or libgsl.so*) http://www.network-theory.co.uk/docs/gccintro/gccintro_90.html If you stil have problems please send an example program and details of your compiler, operating system etc. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ _______________________________________________ Bug-gsl mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gsl
