LimeReport Forum
General Category | Основное => Discussion | Обсуждение => Topic started by: mrdebug on October 23, 2017, 07:52:26 pm
-
My software for Linux has all the libraries in a subfolder called libs. The libs folder has got the library liblimereport.so.
In order to have my software working, it is necessary to copy the libQtZint.so library in /usl/lib. It is possible to force the liblimereport.so to search libQtZint.so in the same its directory and not in /usr/lib folder?
-
You can use this in your pro file.
linux{
#Link share lib to ../lib rpath
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib
QMAKE_LFLAGS_RPATH += #. .. ./libs
}
-
Many thanks. Have I to use these lines in my program or in the limereport .pro file?
-
In your program.
-
Sorry but does not work. I've tried to put your lines of code in my .pro file and in the limereport.pro file but the problem is not solved.
-
It's very strange. Look the video https://youtu.be/qIL9v2pJrGs (https://youtu.be/qIL9v2pJrGs)
-
Can you try with Qt 5.9.2?
-
The same result.
-
Hi, I had the same problem and I solve it by opening: LimeReport-master/limereport/limereport.pro
and adding:
QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN\':./Lib"
After:
unix:{
DESTDIR = $${DEST_LIBS}
linux{
Then you must go to $ProjectsFolder/LimeReport-master/build/5.15.2/linux64/release/lib/
Copy libQtZint.so and liblimereport.so.1.0.0 to your deploy folder
Then rename liblimereport.so.1.0.0 to liblimereport.so.1
Regards,
Luis Murillo