2019-06-25 01:29:49 +00:00
***** ***** ***** ***** ***** ***** ***** ***** ***** **
2019-06-25 01:26:53 +00:00
Setup Toolchain for Mac OS from Scratch
2019-06-25 01:29:49 +00:00
***** ***** ***** ***** ***** ***** ***** ***** ***** **
2019-01-27 18:01:34 +00:00
:link_to_translation:`zh_CN:[中文]`
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
Package Manager
===============
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.
MacPorts needs a full XCode installation, while homebrew only needs XCode command line tools.
.. _homebrew: https://brew.sh/
.. _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 05:45:09 +00:00
2017-03-26 22:01:52 +00:00
Install Prerequisites
=====================
- install pip::
sudo easy_install pip
2019-06-25 01:29:49 +00:00
- install pyserial::
2017-03-26 22:01:52 +00:00
2019-06-25 01:29:49 +00:00
pip install --user pyserial
- install CMake & Ninja build:
- If you have HomeBrew, you can run::
2020-04-06 14:41:44 +00:00
brew install cmake ninja dfu-util
2019-06-25 01:29:49 +00:00
- If you have MacPorts, you can run::
2020-04-06 14:41:44 +00:00
sudo port install cmake ninja dfu-util
2017-03-26 22:01:52 +00:00
Compile the Toolchain from Source
=================================
- Install dependencies:
- with MacPorts::
2019-06-25 01:29:49 +00:00
sudo port install gsed gawk binutils gperf grep gettext wget libtool autoconf automake make
2017-03-26 22:01:52 +00:00
- with homebrew::
2019-06-25 01:29:49 +00:00
brew install gnu-sed gawk binutils gperftools gettext wget help2man libtool autoconf automake make
2017-03-26 22:01:52 +00: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 05:45:09 +00:00
mkdir -p ~/esp
ln -s /Volumes/ctng ~/esp/ctng-volume
Go into the newly created directory::
cd ~/esp/ctng-volume
2017-03-26 22:01:52 +00:00
2018-08-29 13:30:03 +00:00
Download `` crosstool-NG `` and build it:
2017-03-26 22:01:52 +00:00
2019-11-13 03:46:16 +00:00
.. include-build-file :: inc/scratch-build-code.inc
2017-03-26 22:01:52 +00:00
Build the toolchain::
2019-12-09 03:01:09 +00:00
./ct-ng xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf
2017-03-26 22:01:52 +00:00
./ct-ng build
2019-12-09 03:01:09 +00:00
chmod -R u+w builds/xtensa-{IDF_TARGET_TOOLCHAIN_NAME}-elf
2017-03-26 22:01:52 +00:00
2019-12-09 03:01:09 +00: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 22:01:52 +00:00
Next Steps
==========
2019-06-25 01:26:53 +00:00
To carry on with development environment setup, proceed to :ref: `get-started-get-esp-idf` .