Page 1 of 1

Launch script coppeliaSim.sh doesn't load libs included with binaries (Ubuntu)

Posted: 11 Feb 2020, 23:07
by Adrian
Hi,

In the current binary release for Ubuntu 16.04, the launch script coppeliaSim.sh sets the library path as follows (line 30).

Code: Select all

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$dirname
Shouldn't it be the other way around?

Code: Select all

LD_LIBRARY_PATH=$dirname:$LD_LIBRARY_PATH
Since the binary release comes with the right dynamic libraries, shouldn't it be preferable to use those?
The current way might be intentional, but I wanted to mention this, just in case.

On my system, I have to apply the change above to make the launch script work, probably because my system has the wrong version of Qt5.

Best,
Adrian

Re: Launch script coppeliaSim.sh doesn't load libs included with binaries (Ubuntu)

Posted: 13 Feb 2020, 14:11
by coppelia
oh right, thanks a lot Adrian!

Cheers