On 07-Dec-1999, Igor Mozetic <[EMAIL PROTECTED]> wrote: > > How does one compile a Fortran program with Lapack library ??? > I tried: >
# g77 File.for -llapack You don't need the lib at the start because it is automatically added. # g77 File.for /usr/lib/liblapack.a would probably also work. Pete