Page 1 of 1

[spirit-3.7.0-linux] Library path unknown

Posted: Thu 06. Jun 2024 18:44:23
by DiMa63
Hi, I downloaded and tried to start the new version 3.7.0 and got following error message:

Code: Select all

./settings-x86_64: error while loading shared libraries: libQt5Quick.so.5: cannot open shared object file: No such file or directory
As a quick fix I added this in 'settings.sh' and it works:

Code: Select all

export LD_LIBRARY_PATH=./lib

Re: [spirit-3.7.0-linux] Library path unknown

Posted: Thu 06. Jun 2024 20:48:51
by ZeXx86
Hello,

you have to start the app with settings.sh.

Re: [spirit-3.7.0-linux] Library path unknown

Posted: Fri 07. Jun 2024 18:30:50
by DiMa63
Yes, I executed the script 'settings.sh'. Therefore I added the line 'export LD_LIBRARY_PATH=./lib'.

[settings.sh]

Code: Select all

...

cd `dirname $0`
ARCH=`uname -m`

export LD_LIBRARY_PATH=./lib

exec ./settings-$ARCH "$@"

.....