I got "Segmentation Fault" when I run my application on another PC without Qt.
-
Hi, Sir:
I follow the way described in "Deploying Qt Applications" to collect all shared libraries into a folder.
And, write a shell script to export LD_LIBRARY_PATH.@appname=
basename $0 | sed s,\.sh$,,
dirname=$PWD/$appname
LD_LIBRARY_PATH=$dirname
echo LD_PATH=
echo $LD_LIBRARY_PATH
export LD_LIBRARY_PATH
$dirname/$appname $*@And, put my application into the folder as well. However, when I run this application on another PC.
I get "Segmentation Fault"!!Could you help me to know the reason?? The only library I don't put in is linux-gate.so.1.
Thanks a lot.
BR,
Pico -