[spirit-3.7.0-linux] Library path unknown

In case you would like to see some new feature in the software you can share it right here!
You can also report issue or odd behavior here.
Post Reply
DiMa63
Posts: 14
Joined: Sat 13. Apr 2024 12:25:03
Location: Hamburg

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
ZeXx86
Site Admin
Posts: 12750
Joined: Mon 29. Apr 2013 16:06:44
Contact:

Hello,

you have to start the app with settings.sh.
Spirit System developer
DiMa63
Posts: 14
Joined: Sat 13. Apr 2024 12:25:03
Location: Hamburg

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 "$@"

.....
Post Reply