ubuntu安装 STM32MP1 含编译 Qt 应用程序的交叉编译工具链

参考正点原子提供的文档:【正点原子】STM32MP157快速体验V1.6.pdf

1.工具获取

在开发板光盘 A-基础资料->5、开发工具->1、交叉编译器路径下找到 st-example-image-qtwayland-openstlinux-weston-stm32mp1-x86_64-toolchain-3.1-snapshot.sh

2. 安装

将st-example-image-qtwayland-openstlinux-weston-stm32mp1-x86_64-toolchain-3.1-snapshot.sh拷贝到ubuntu下。并赋予可执行权限。


chmod +x st-example-image-qtwayland-openstlinux-weston-stm32mp1-x86_64-toolchain-3.1-snapshot.sh

进行安装

./st-example-image-qtwayland-openstlinux-weston-stm32mp1-x86_64-toolchain-3.1-snapshot.sh

安装完成后,安装的交叉编译工具链都会安装在/opt/目录下。
在这里插入图片描述

3. 使用

我们只是安装了它,要使用时还需要使能它。执行下面的指令,在当前终端下导入交叉编译工具链的环境变量(注意切换终端时需要重新使能这个环境变量才能编译)。

使能交叉编译器

source /opt/st/stm32mp1/3.1-snapshot/environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi

进入我们QT项目下,执行 qmake 指令生成 Makefile,用于编译:
在这里插入图片描述
执行make命令编译项目,编译结果如下:

在这里插入图片描述

你可能感兴趣的:(Linux,QT,stm32,ubuntu,单片机)