赞
踩
交叉编译工具链:gcc-arm-9.2-2019.12-x86_64-arm-none-linux-gnueabihf.tar.xz
Qt版本:qt-everywhere-src-5.12.9.tar.xz
Ubuntu版本:ubuntu-22.04.2-desktop-amd64.iso
/home/qsqya/compile/qt5.12.9/qt-everywhere-src-5.12.9
/opt/arm-none-linux-gnueabihf-9.2
export PATH=/opt/arm-none-linux-gnueabihf-9.2/bin:$PATH
:%s#arm-linux-gnueabi#arm-none-linux-gnueabihf#g
#!/bin/sh
cd ./qt-everywhere-src-5.12.9
./configure -prefix /home/qsqya/compile/qt5.12.9/build \
-opensource \
-release \
-confirm-license \
-xplatform linux-arm-gnueabi-g++ \
-shared \
-nomake examples \
-nomake tests \
-no-opengl
路径自行修改
4. 执行脚本
./compile.sh
make -j 4 ##编译
make install ##安装
3:38: error: ‘numeric_limits’ is not a member of ‘std’
103 | const auto uchar_max = (std::numeric_limits<uchar>::max)();
解决办法:
qtbase/src/corelib/tools/qbytearraymatcher.h
#include <QtCore/qbytearray.h>
+#include <limits>
/home/qsqya/compile/qt5.12.9/qt-everywhere-src-5.12.9/qtbase/include/QtCore/../../src/corelib/global/qendian.h:331:35: error: ‘numeric_limits’ is not a member of ‘std’
331 | { return QSpecialInteger(std::numeric_limits<T>::max()); }
解决办法
#include <QtCore/qfloat16.h>
#include <QtCore/qglobal.h>
+#include <limits>
/home/qsqya/compile/qt5.12.9/qt-everywhere-src-5.12.9/qtbase/src/corelib/tools/qbytearraymatcher.h:103:38: error: ‘numeric_limits’ is not a member of ‘std’
103 | const auto uchar_max = (std::numeric_limits<uchar>::max)();
解决办法
#include <QtCore/qbytearray.h>
+#include <limits>
/home/qsqya/compile/qt5.12.9/qt-everywhere-src-5.12.9/qtbase/src/corelib/kernel
解决办法
#include <QtCore/qobject.h>
#ifndef QT_BOOTSTRAPPED
#include <QtCore/qbytearraylist.h>
#endif
+#include <limits>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。