[QUOTE=Nylex;4688066]Looking at the shell script, "Compall.txt", I see a problem. You have:
Code:
BLAS=' -L/usr/local/SAPT2008/BLAS/blas_LINUX.a -lblas '
You just use directory names with the -L option, so the first thing to do is remove the "blas_LINUX.a" part of that path. Secondly, with regards to the -l option, the linker looks for files named lib
foo.so (or .a), where
foo is whatever follows "-l". So, you should either rename "blas_LINUX.a" to "libblas.a" or provide a symbolic link called "libblas.a" that points to "blas_LINUX.a".
Does that help?[YES, it solved the problem]