s**b 发帖数: 169 | 1 想用matlab编译可执行文件,
mcc -m test.m
运行 ./test 报错
error while loading shared libraries: libmwmclmcrrt.so.7.3: cannot
open shared object file: No such file or directory
请问怎么解决?
//bow |
r****y 发帖数: 1437 | 2 need to link this library
either add the path to environmen var, or specify the -L -l options.
【在 s**b 的大作中提到】 : 想用matlab编译可执行文件, : mcc -m test.m : 运行 ./test 报错 : error while loading shared libraries: libmwmclmcrrt.so.7.3: cannot : open shared object file: No such file or directory : 请问怎么解决? : //bow
|
s**b 发帖数: 169 | 3 能写的详细点吗?
我google了一下,然后 尝试export LD_LIBRARY_PATH=/usr/lib/matlab/bin/glnx86,
可是没作用。
options.
【在 r****y 的大作中提到】 : need to link this library : either add the path to environmen var, or specify the -L -l options.
|
r****y 发帖数: 1437 | 4 export is only for bash, it's up to your shell, different syntax.
you have to append it, not totally give a new path
【在 s**b 的大作中提到】 : 能写的详细点吗? : 我google了一下,然后 尝试export LD_LIBRARY_PATH=/usr/lib/matlab/bin/glnx86, : 可是没作用。 : : options.
|
j**u 发帖数: 6059 | 5 没用过这个,google一下吧。
【在 s**b 的大作中提到】 : 能写的详细点吗? : 我google了一下,然后 尝试export LD_LIBRARY_PATH=/usr/lib/matlab/bin/glnx86, : 可是没作用。 : : options.
|
g****y 发帖数: 199 | 6 run : mbuild -setup
then try again
【在 s**b 的大作中提到】 : 想用matlab编译可执行文件, : mcc -m test.m : 运行 ./test 报错 : error while loading shared libraries: libmwmclmcrrt.so.7.3: cannot : open shared object file: No such file or directory : 请问怎么解决? : //bow
|