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

Report crashes, strange behaviour, or apparent bugs
Post Reply
Adrian
Posts: 12
Joined: 22 Jun 2018, 23:03
Contact:

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

Post 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

coppelia
Site Admin
Posts: 10339
Joined: 14 Dec 2012, 00:25

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

Post by coppelia »

oh right, thanks a lot Adrian!

Cheers

Post Reply