从零开始设置 Mac OS 环境下的工具链 (传统 GNU Make)¶
注解
Since ESP-IDF V4.0, the default build system is based on CMake. This documentation is for the legacy build system based on GNU Make. Support for this build system may be removed in future major releases.
注解
安装工具链的标准流程可以通过阅读文档 在 MacOS 上安装 ESP32 工具链 来获得, 工具链的自定义设置 章节会介绍哪些情况下我们必须要重新定义工具链。
从源代码编译工具链¶
安装依赖:
创建大小写敏感的文件系统镜像:
hdiutil create ~/esp/crosstool.dmg -volname "ctng" -size 10g -fs "Case-sensitive HFS+"
挂载:
hdiutil mount ~/esp/crosstool.dmg
创建指向你工作目录的符号链接:
mkdir -p ~/esp
ln -s /Volumes/ctng ~/esp/ctng-volume
进入新创建的工作目录:
cd ~/esp/ctng-volume
下载 crosstool-NG
然后编译:
git clone https://github.com/espressif/crosstool-NG.git
cd crosstool-NG
git checkout esp-2020r3
git submodule update --init
./bootstrap && ./configure --enable-local && make
编译工具链:
./ct-ng xtensa-esp32-elf
./ct-ng build
chmod -R u+w builds/xtensa-esp32-elf
编译得到的工具链会被保存到 ~/esp/ctng-volume/crosstool-NG/builds/xtensa-esp32-elf
。根据 Mac OS 下设置环境变量的标准方法 中的介绍,将工具链添加到 PATH
中。
下一步¶
继续设置开发环境,请前往 获取 ESP-IDF 章节。