前端之家收集整理的这篇文章主要介绍了
在CentOS6.7搭建Qt5.6.2环境,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1.去官网下载,最新的Qt5,linux版本——qt-opensource-linux-x64-5.6.2.run
网址:http://www.qt.io/download-open-source/
2.安装必要的库:
#yum install mesa-libGL-devel mesa-libGLU-devel
#yum install freeglut-devel
下面安装c++库
# yum install gcc-c++
备注:此时会将gcc-c++和libstdc++-devel都安装上。
查看g++是否安装成功
# g++ -v
使用内建 specs。
目标:x86_64-redhat-linux
配置为:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
线程模型:posix
gcc 版本 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
3.直接运行安装包
在运行安装包之前 首先给该安装包 可执行权限,不然会出错。
#chmod +xqt-opensource-linux-x64-5.6.2.run
然后直接运行即可:
#./qt-opensource-linux-x64-5.6.2.run
4.安装好之后,需要添加环境变量
#vim /etc/profile
在最后一行,添加以下内容:
export PATH="/opt/Qt5.6.2/5.6/gcc_64/bin:$PATH"
export PATH="/opt/Qt5.6.2/Tools/QtCreator/bin:$PATH"
5.添加桌面图标
6.代码文件夹权限修改
#chmod -R 777 /opt/QTProjects
7.测试是否安装成功
新建一个项目:输出1加2的值
测试成功安装完成。
原文链接:https://www.f2er.com/centos/375899.html