From: HelloWorld on
Hello,

I want to complete making stand-alone in linux.

What I did so far is

1)mcc -mv run_oneclass_ddtools.m
2)buildmcr
3)wrote a shell script to set a proper path and to run the excutable
file as well.

For now, I have a shared library link problem. The error message is
in below:

error while loading shared libraries: libmwmclmcrrt.so.7.3: cannot
open shared object file: No such file or directory

<shell script for excution>
----------------------------------------------------------
#!/bin/sh

ROOT=/home1/apachedata/segun/matlab/Cel_Mouse_sec_seq/v73

export MATLAB=$ROOT
export LD_LIBRARY_PATH=$ROOT/bin/glnx64:\
$ROOT/sys/os/glnx64:\
$ROOT/sys/java/jre/glnx64/jre1_4_2/lib/amd64/native_threads:\
$ROOT/sys/java/jre/glnx64/jre1_4_2/lib/amd64/client:\
$ROOT/sys/java/jre/glnx64/jre1_4_2/lib/amd64:\$ROOT/sys/opengl/lib/gln
x64:\
#$ROOT/runtime/glnxa64:\

export XAPPLRESDIR=$ROOT/X11/app-defaults:\

echo "Running test"

/home1/apachedata/segun/matlab/Cel_Mouse_sec_seq/run_oneclass_ddtools
----------------------------------------------------------
With the message, I tried to add the line "$ROOT/runtime/glnxa64:\"
which includes libmwmclmcrrt.so.7.3 file and ran again. Fatal error
was occured.

Anyone has an experience with this problem?

Thanks,
SJ