[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gsl] Random generator: linking problem
From: |
Marco Tului |
Subject: |
Re: [Help-gsl] Random generator: linking problem |
Date: |
Mon, 11 May 2009 20:11:19 +0200 |
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 <
address@hidden> 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. :-)
>