On Sun, 28 Mar 2010, sudhir singh rana wrote:
I added all jar's of Carrot in makefile but while doing make it is giving me following errror. jcc.cpp.JavaError: java.lang.UnsatisfiedLinkError: no nni_lapack in java.library.path Java stacktrace: java.lang.UnsatisfiedLinkError: no nni_lapack in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1698) at java.lang.Runtime.loadLibrary0(Runtime.java:840) at java.lang.System.loadLibrary(System.java:1047) at nni.LAPACK.<clinit>(LAPACK.java:37) After that I installed lapack using yum and error remains same. Can anyone please tell me how to fix java.lang.UnsatisfiedLinkError.
Use --libpath with jcc to help the JVM find the shared library it can't find without it. Use --help to get help on jcc command line options.
Ando..