[Development] Bundling Qt 5 libraries with application package and strange "font" error

Nicolás Alvarez nicolas.alvarez at gmail.com
Sun Aug 11 01:39:51 CEST 2013


2013/8/10 Tomasz Olszak <olszak.tomasz at gmail.com>:
> It looks like LD_LIBRARY_PATH doesn't work because even if I set
> LD_LIBRARY_PATH=. in /opt/usr/APPID/lib directory and execute ldd on e.g.
> libQt5Qml.so I get:

"name=value" in a Unix shell does *not* set an environment variable.
It sets a shell variable, which won't be seen by external commands run
from that shell (like ldd). You need to use either "name=value
command" as a single statement, or "export name=value" to make it
affect all future commands run on the shell session.

In addition, I strongly doubt LD_LIBRARY_PATH supports relative paths.

-- 
Nicolás



More information about the Development mailing list