MATLAB 2014a (8.3) Compiler Runtime Errors libmwlaunchermain.so

后端 未结 2 1373
无人及你
无人及你 2021-01-18 04:13

MATLAB 2014a (8.3) Runtime Compiler (MCR) Errors when trying to launch deployed (using deploy tool) application in Ubuntu 13.04.

Right after installation of MCR if o

2条回答
  •  难免孤独
    2021-01-18 04:39

    In my case (Matlab R2016b = v91), the binary generated by Matlab was accompanied by a shell script which sets up the LD_LIBRARY_PATH for me. If I just run

    ./run_scriptname.sh
    

    it complains about the missing . So running the script with

    ./run_scriptname.sh /home/user/MatlabMCR/v91
    

    it worked out of the box.

    For me, it was not obvious that the path shown above is the because I chose /home/user/MatlabMCR as installation directory. And with the wrong path specified, it led to the same error message.

提交回复
热议问题