Hi;
i download a prebuilt library lapack_linu.a , and i solve aa simple problems solving a simple linear equation systems , my code is named dp.f. and i put dp.f and lapack_linux.a under the same directory.
i use command
f77 dp.f lapack_linux.a
but it gives me the following error
"undefined reference to dgesv"
dgesv is a drive routine in the lapack.
show what is the reason
regards