编译脚本
./configure -prefix /opt/qt-5.12.2 \
-qmldir /opt/qt-5.12.2/qml2 \
-plugindir /opt/qt-5.12.2/plugins \
-xplatform linux-arm-gnueabi-g++ \
-opensource \
-release \
-shared \
-no-xcb \
-no-rpath \
-confirm-license \
-make libs \
-pch \
-linuxfb \
-qt-libjpeg \
-qt-zlib \
-no-opengl \
-no-sse2 \
-no-dbus \
-no-openssl \
-no-cups \
-no-glib \
-nomake examples \
-no-pkg-config \
-no-separate-debug-info \
python问题
编译Qt5.14.2的qtdeclarative发生错误:building qtqml requires python,系统是ubuntu18.04,安装有python3,修复需要做2步:
1.用nano或者vi修改别名文件
$
vi .bashrc
添加别名
alias python=python3
保存后,输入下面命令生效
$ source .bashrc
这个时候python已经能打印信息了
2.编译依然有错误,复制
python3文件夹为
python。
先查询
python3
路径,命令:
$ which python3
$ sudo cp /usr/bin/python3 /usr/bin/python