2019-06-24 21:29:49 -04:00
***** ***** ***** ***** ***** ***** ***** ***** ***** **
2019-06-24 21:26:53 -04:00
Setup Toolchain for Mac OS from Scratch
2019-06-24 21:29:49 -04:00
***** ***** ***** ***** ***** ***** ***** ***** ***** **
2019-01-27 13:01:34 -05:00
:link_to_translation:`zh_CN:[中文]`
2017-03-26 18:01:52 -04:00
2019-06-24 21:29:49 -04:00
Package Manager
===============
2020-11-30 04:58:27 -05:00
To set up the toolchain from scratch, rather than :doc: `downloading a pre-compiled toolchain<macos-setup>` , you will need to install either the MacPorts_ or Homebrew_ package manager.
2019-06-24 21:29:49 -04:00
2020-11-30 04:58:27 -05:00
MacPorts needs a full XCode installation, while Homebrew only needs XCode command line tools.
2019-06-24 21:29:49 -04:00
2020-11-30 04:58:27 -05:00
.. _Homebrew: https://brew.sh/
2019-06-24 21:29:49 -04:00
.. _MacPorts: https://www.macports.org/install.php
See :ref: `Customized Setup of Toolchain <get-started-customized-setup>` section for some of the reasons why installing the toolchain from scratch may be necessary.
2018-10-22 01:45:09 -04:00
2017-03-26 18:01:52 -04:00
Install Prerequisites
=====================
- install pip::
sudo easy_install pip
2019-06-24 21:29:49 -04:00
- install pyserial::
2017-03-26 18:01:52 -04:00
2019-06-24 21:29:49 -04:00
pip install --user pyserial
- install CMake & Ninja build:
2020-11-30 04:58:27 -05:00
- If you have Homebrew, you can run::
2019-06-24 21:29:49 -04:00
2020-04-06 10:41:44 -04:00
brew install cmake ninja dfu-util
2019-06-24 21:29:49 -04:00
- If you have MacPorts, you can run::
2020-04-06 10:41:44 -04:00
sudo port install cmake ninja dfu-util
2017-03-26 18:01:52 -04:00
Compile the Toolchain from Source
=================================
- Install dependencies:
- with MacPorts::
2019-06-24 21:29:49 -04:00
sudo port install gsed gawk binutils gperf grep gettext wget libtool autoconf automake make
2017-03-26 18:01:52 -04:00
2020-11-30 04:58:27 -05:00
- with Homebrew::
2017-03-26 18:01:52 -04:00
2019-06-24 21:29:49 -04:00
brew install gnu-sed gawk binutils gperftools gettext wget help2man libtool autoconf automake make
2017-03-26 18:01:52 -04:00
Create a case-sensitive filesystem image::
hdiutil create ~/esp/crosstool.dmg -volname "ctng" -size 10g -fs "Case-sensitive HFS+"
Mount it::
hdiutil mount ~/esp/crosstool.dmg
Create a symlink to your work directory::
2018-10-22 01:45:09 -04:00
mkdir -p ~/esp
ln -s /Volumes/ctng ~/esp/ctng-volume
Go into the newly created directory::
cd ~/esp/ctng-volume
2017-03-26 18:01:52 -04:00
2018-08-29 09:30:03 -04:00
Download `` crosstool-NG `` and build it:
2017-03-26 18:01:52 -04:00
2019-11-12 22:46:16 -05:00
.. include-build-file :: inc/scratch-build-code.inc
2017-03-26 18:01:52 -04:00
Build the toolchain::
2019-12-08 22:01:09 -05:00
./ct-ng xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf
2017-03-26 18:01:52 -04:00
./ct-ng build
2019-12-08 22:01:09 -05:00
chmod -R u+w builds/xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf
2017-03-26 18:01:52 -04:00
2019-12-08 22:01:09 -05:00
Toolchain will be built in `` ~/esp/ctng-volume/crosstool-NG/builds/xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf `` . To use it, you need to add `` ~/esp/ctng-volume/crosstool-NG/builds/xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf/bin `` to `` PATH `` environment variable.
2017-03-26 18:01:52 -04:00
2020-11-04 17:32:40 -05:00
Python 2 deprecation
====================
Python 2 reached its `end of life <https://www.python.org/doc/sunset-python-2/> `_ and support for it in ESP-IDF will be removed soon. Please install Python 3.6 or higher. Instructions for macOS are listed above.
2017-03-26 18:01:52 -04:00
Next Steps
==========
2019-06-24 21:26:53 -04:00
To carry on with development environment setup, proceed to :ref: `get-started-get-esp-idf` .