我曾与基于Qt 5.0.1在Linux环境在Qt Creator的2.6.2。 该应用程序工作得很好,我做了编译,但是当我执行它在另一台计算机上我得到了这样的错误在计算机上:
error while loading shared libraries: libQt5WebKitWidgets.so.5: cannot open shared object file: No such file or directory
error while loading shared libraries: libxslt.so.1: cannot open shared object file: No such file or directory
我发现在这一些解决方案的链接 (一些链接都死了)。
所以我添加到我的.pro文件中这一行:
CONFIG += static
要静态编译我的项目。
我认为该文件我得到的将是更大的,但我得到了相同的尺寸和相同的错误。
谢谢。