Ah ok!! Now infact it works!! Thanks a lot! It was the first time I tried to
use the GSL, and the first time I concerned about the linkage in this way...


Thanks,

Marco Tului.




On Mon, May 11, 2009 at 8:04 PM, Joseph Wakeling <
[email protected]> wrote:

> Marco Tului wrote:
> > I have read the GSL manual, and in my Makefile I wrote:
> >
> > :::::::::::::::::::::::
> > # RANDOM_NUMBER_GENERATOR
> > random_generator.o: random_generator.hpp random_generator.cpp
> > g++ -c random_generator.cpp -lgsl -lgslcblas -lm
> >
> ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
>
> This is the source of your problem.  You don't need the -lgsl -lgslcblas
> -lm when you are compiling the source into object files -- you need it
> at the linking stage.
>
> So remove the -lgsl etc from the section above and add them to the part
> where you compile all the .o files into the executable.  Then it should
> work. :-)
>
_______________________________________________
Help-gsl mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gsl

Reply via email to