摘要:
官方:http://download.qt.io/archive/qt/ 其他: Qt开源社区:https://www.qter.org/portal.php?mod=list&catid=18 QtCN:http://www.qtcn.org/bbs/read-htm-tid-1075.html 阅读全文
摘要:
xrandr -s 1600x1200 阅读全文
摘要:
临时修改:export LD_LIBRARY_PATH=./ 阅读全文
摘要:
在linux里调用某个程序时,可能会在其调用其他动态库时出现错误,但是最后的提示很粗,在调用程序时,加入临时环境变量, 输入: export QT_DEBUG_PLUGINS=1 就能看到最细的打印信息。 阅读全文
摘要:
1、查看软连接: ll -al xx 2、新建软连接 ln -s 新的源文件名 目标文件名 3、更新软连接: ln -snf libQt5Core.so.5.9.0 libQt5Core.so.5 4、删除软连接 rm -rf symbolic_name 阅读全文