交叉编译工具链:gcc-linaro-7.5.0-2019.12-x86_64_aarch64-linux-gnu
百度rtc使用客户端 armlinux-softfp SDK版本
qt5.9.0的pc端安装就不多说,aarch64编译执行文件autoconfigure.sh 如下,需要使用chmod u+x 修改权限。qtbase里面的文件参考其他资料自行添加
./configure \
-prefix /opt/qt5.9.5-arm-webrtc \
-confirm-license \
-opensource \
-release \
-make libs \
-xplatform linux-aarch64-gnu-g++ \
-pch \
-qt-libjpeg \
-qt-libpng \
-qt-zlib \
-webrtc \
-no-opengl \
-no-qml-debug \
-no-sse2 \
-no-openssl \
-no-cups \
-no-glib \
-no-dbus \
-no-xcb \
-no-separate-debug-info \
protobuf编译:
#安装依赖项目
sudo apt-get install autoconf automake libtool curl make g++ unzip
#下载最新源码
git clone https://github.com/google/protobuf.git
#进入目录
cd protobuf
#更新源
git sub