As a newbie to both linux and command line Fortran I hit a rock so quickly. After building the blas and lapack libraries (I'm using the Intel fortran compiler), I try to link them with the source files through the command (the libraries liblapack.a and libblas.a are located at the same path with the source files)
- Code: Select all
ifort -llapack -lblas *.f90
and the result is
- Code: Select all
ld: cannot find -llapack
- Code: Select all
num_pack.f90:(.text+0x209): undefined reference to `dgeev_'
Can you give a hint about what I'm doing wrong? Thank you for your replies in advance.

