清华大学镜像:https://mirrors.tuna.tsinghua.edu.cn/qt/official_releases/
Linaro工具链:https://releases.linaro.org/components/toolchain/binaries/latest-7/
注意:指定编译器要在源码mkspecs目录有对应conf文件,没有的话复制一个自己更改。
#生成makefile ./configure -xplatform linux-aarch64-gnu-g++ -no-opengl #编译 make -j8 #安装 make install 或 make INSTALL_ROOT=yourpath install在.pro文件中添加
#要部署的目录 target.path=/opt/arm #安装目标文件 INSTALLS+=target #其他库和文件部署 mylibs.path = /opt/arm mylibs.files=../../build/arm/libyour.so INSTALLS+=mylibs myConfig.path=/opt myConfig.files=../../opt/your.sh INSTALLS+=myConfig