LinkIt Smart 7688 建立交叉编译环境

Posted liuyunxiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinkIt Smart 7688 建立交叉编译环境相关的知识,希望对你有一定的参考价值。

一.编译工具链的获取

1.官网下载:https://docs.labs.mediatek.com/resource/linkit-smart-7688/zh_cn/downloads

2.自己编译:http://www.cnblogs.com/liuyunxiang/p/8451361.html

 

make menuconfig配置界面选择编译工具链 (蓝色区域 *)

技术分享图片

编译结束,在源码目录/bin/ramips 下面会生成工具链压缩包:

技术分享图片

 

二.设置环境变量

把下载的或者编译好的工具链解压放在 /opt 下或者自定义目录:

 

OpenWrt-Toolchain/toolchain/bin 目录下 (**/**/bin 目录名太长,我修改了)

找到 mipsel-openwrt-linux-musl-wrapper.sh   文件

$vim mipsel-openwrt-linux-musl-wrapper.sh

找到

TOOLCHAIN_BIN_DIR="$REALNAME_DIR/"

在下面添加

export STAGING_DIR="$REALNAME_DIR/../../"

否则编译的时候会出现STAGING_DIR 警告

$vim /etc/profile

首行添加如下

export PATH=$PATH:/home/liu/Edev/LinkIt-Smart-7688/OpenWrt-Toolchain/toolchain/bin

保存并退出,更新生效:

$source /etc/profile

重启系统:

$reboot

 

重启之后,自定义目录,新建一个 hello.c 文件

 

#include <stdio.h>

int main()

{

printf("hello,word\\n");

}

 

编译:

$mipsel-openwrt-linux-gcc hello.c -o hello

生成 hello 可执行文件拷贝到开发板

修改权限

$chmod +x hello

$./hello

技术分享图片

可以看到正确执行了

以上是关于LinkIt Smart 7688 建立交叉编译环境的主要内容,如果未能解决你的问题,请参考以下文章

LinkIt Smart 7688 使用官方 SDK 生成 安装包

LinkIt Smart 7688 从源码构建 bootloader (U-Boot)

Linkit 7688 DUO 加入MQTT物联网协议

LinkIt Smart 7688 从源码构建固件并升级

Linkit 7688 DUO 接上各种Arduino传感器和模块—扩展篇

LinkIt Smart 7688 硬件烧写Flash