Hi,
it's nearly a weak i'm trying different commands to link my lapack libraries when i compile my fortran77 codes with g77.
Blas and Lapack libraries hava been installed and compiled automatically on my ubuntu linux release by a programm called 'Synaptic Package Manager'.
Searching on web i foud the command
g77 -o example.o example.f -L/usr/local/lib/ -llapack -lblas
Reading this i argued /usr/local/lib is the directory where lapack and blas shared library or symbolic links to shared libraries have been located; so i changed the path and i filled with /usr/lib/atlas, where i found files like liblapack.so.3. But nothing works!
When i try to compile a message appears saying:
/usr/bin/ld: cannot find -llapack
collect2: ld returned 1 exit status
So...can anyone help me?
Thank you very much, Giacomo