mips64平台下Qt5.15.2源码编译
源码下载
下载地址:https://download.qt.io/archive/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz
依赖安装
参考:https://doc.qt.io/qt-5/linux-requirements.html
configure参数
这个可以根据自己需要调整需要编译的模块,我的配置是这样的:
./configure -prefix /data/qtInstall/ -release -opensource -make libs -optimized-qmake -pch -qt-libjpeg -qt-zlib -no-opengl -skip qt3d -skip qtcanvas3d -skip qtpurchasing -no-sse2 -no-openssl -no-cups -no-glib -no-iconv -nomake examples -nomake tools -skip qtvirtualkeyboard -skip qtlocation -xcb
编译安装
configure运行完成后,如果没有报错,下面就可以继续编译了,为了了解编译过程报错情况,我们把错误日志记录下来:
make -j16 2>make.error.log
#install
make install #安装路径为prefix指定的路径