Setting LD_LIBRARY_PATH for MatlabEngine java call

조회 수: 21 (최근 30일)
Jeff Mandel
Jeff Mandel 2020년 12월 17일
댓글: Jeff Mandel 2020년 12월 30일
I am developing a maven mojo plugin to compile my MATLAB code used in a Tomcat servlet. It just grabs a few paths from maven, assembles a call to mcc, and passes that to an instance of MatlabEngine. The problem is that unless I define LD_LIBRARY_PATH (either in .bashrc, or by sourcing my own script), LD_LIBRARY_PATH is empty and the program dies in the call:
Future<MatlabEngine> eng = MatlabEngine.startMatlabAsync();
I assumed .matlab7rc.sh would be invoked, but watching the file access:
$ sudo auditctl -l
-w /usr/local/MATLAB/R2020a/bin/.matlab7rc.sh -p rx -k matlab7rc
shows the program isn't accessing that file. Even strace:
strace -o strace.out -f -t -e trace=file mvn install
grep matlab7rc strace.out
shows no access. I understand I can define LD_LIBRARY_PATH in a shell script, but this seems inelegant. I haven't found a clean way to define an environment variable within the pom.xml, and while I could use java.util ProcessBuilder to define the environment, this is a long run for a short slide. Suggestions?
  댓글 수: 3
Fredrik Qwarfort
Fredrik Qwarfort 2020년 12월 30일
편집: Fredrik Qwarfort 2020년 12월 30일
I had the same annoying errors. Try to add the /usr/local/MATLAB/R2020a/sys/os/glnxa64 to your LD_LIBRARY_PATH.
export LD_LIBRARY_PATH=/usr/local/MATLAB/R2020a/bin/glnxa64:/usr/local/MATLAB/R2020a/sys/os/glnxa64:$LD_LIBRARY_PATH
The gcc compiler libraries used by Matlab is located there and it uses those libraries instead of the ones installed in your system, which probably is not the same versions.
Jeff Mandel
Jeff Mandel 2020년 12월 30일
As I noted, that is easy enough to do globally in .bashrc; I want to do it on a per-process basis. The reason I can execute "matlab -nodisplay" on my Linux box is that the matlab command first executes .matlab7rc.sh, which sets the LD_LIBRARY_PATH for that process. The problem is that the matlab engine doesn't do this. I can work around this by simply setting the LD_LIBRARY_PATH on the command line:
LD_LIBRARY_PATH=/usr/local/MATLAB/R2020a/bin/glnxa64 java -classpath ...
This works fine, but is inelegant. Also note that the only reason I need to mess around with LD_LIBRARY_PATH is that I'm loading a library that loads another private MATLAB library, which means that setting the java.library.path doesn't suffice, as the java classloader isn't doing the path resolution, the native OS is.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Java Package Integration에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by