ubuntu安装QT4.8.0 和安装QT库
一 、源代码的获取。
官网http://qt.nokia.com/downloads (自己安装的4.8.0)
二、解压代码
tar zxvf qt-everywhere-opensource-src-4.8.0.tar.gz
解压完进入解压后的源代码文件夹
三、执行./configure生成makefile
./configure -prefix /usr/local/Qt-4.8.0
(上面指定的这个目录/usr/local/Qt-4.8.0 ,就是make install 后的安装目录)
下面出现对话框选择open source edition.这是自由版。输入yes接受协议。
(1)如果你的机器各种库文件完整,经过一小会,配置完成,会出现以下信息
Qt is now configured for building ,just run
‘make‘
Once everything is built , you must run ‘make
install‘
Qt will be installed into /usr/local/Qt-4.8.0
To reconfigure ,run ‘make confclean‘ and
‘configure‘
说明Makefile文件生成成功
(2)如果出现以下信息
Basic XLib functionality test failed!
You might need to modify the include and library search paths by
editing
QMAKE_INCDIR_X11 and QMAKE_LIBDIR_X11 in
/home/gcgily/qt/mkspecs/linux-g++
解决办法:
cd config.test/x11/xlib 执行make命令,看出错信息
1.出错原因:在xlib.cpp里面第24行 头文件#include出错 因为缺少头文件
解决办法:
sudo apt-get install libx11-dev
安装成功后 又执行make 命令
2. 出错信息:
/usr/bin/ld: cannot find -lxext
解决办法
sudo apt-get install libxext-dev
安装成功后 又执行make命令就不会出错了。
[别人的经验: 其原因就在于需要安装libX11的开发包,在ubuntu/debian里包名都是libX11-dev
根据以往的经验,在./configure前主动装好下面3个包,基本上就万事大吉了
sudo apt-get install libx11-dev libxext-dev libxtst-dev]
四、安装所需到包后再重新./configure即可生成Makefile文件
五、编译QT
执行make命令,需要2个小时。
六、自动安装QT库
sudo apt-get install qtcreator
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。