- 克隆源码和拉取子模块(小安派S1主芯片与Ai-M61-32S一致)
我们在电脑打开一个自己的文件夹,打开git终端执行以下命令拉取源码
- git clone --recursive https://gitee.com/Ai-Thinker-Open/AiPi-Open-Kits.git
复制代码 之后源码会下载到该文件夹下
2.拉取M61的SDK 子模块
进入AiPi-Open-Kits 中,用文本打开.gitmodules 文件url 参数中的 github.com 改成gitee.com:
[submodule "aithinker_Ai-M6X_SDK"]
path = aithinker_Ai-M6X_SDK
url = https://gitee.com/Ai-Thinker-Open/aithinker_Ai-M6X_SDK.git
branch = release/AiPi_Eyes_SDK
然后在git 工具中分别执行:
- cd AiPi-Open-Kits/
- git submodule init
- git submodule update
复制代码 1)进入到SDK中拉取子模块逐条运行以下指令: cd aithinker_Ai-M6X_SDK/
git submodule init
git submodule update
2)克隆适用Windows 的编译工具链就在aithinker_Ai-M6X_SDK/文件夹中拉取工具链,直接适用git 工具拉取: git clone https://gitee.com/bouffalolab/toolchain_gcc_t-head_windows.git
3.给编译工具路径设置环境变量
把三个路径分别加入到电脑的环境变量当中:
aithinker_Ai-M6X_SDK\toolchain_gcc_t-head_windows\bin
aithinker_Ai-M6X_SDK\tools\make
aithinker_Ai-M6X_SDK\tools\ninja
4.测试
5.编译success
|