macos-setup.rst 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. Set up of Toolchain for Mac OS
  2. ******************************
  3. Step 0: Prerequisites
  4. =====================
  5. Getting MacPorts or homebrew
  6. ----------------------------
  7. Whether you compile the toolchain from source or download binary toolchain, there are some dependencies which need to be installed on macOS first. These dependencies are installed with one of the package managers: homebrew or MacPorts. If you have these already, you can skip the following instructions.
  8. - Install XCode from Mac App Store
  9. - Open Terminal.app and run ``xcode-select --install``
  10. - Run ``sudo xcodebuild -license`` and agree to XCode license
  11. - Install MacPorts_ or homebrew_
  12. .. _homebrew: http://brew.sh/
  13. .. _MacPorts: https://www.macports.org/install.php
  14. Step 1: Download binary toolchain for the ESP32
  15. ==================================================
  16. ESP32 toolchain for macOS is available for download from Espressif website:
  17. https://dl.espressif.com/dl/xtensa-esp32-elf-osx-1.22.0-59.tar.gz
  18. Download this file, then extract it to the location you prefer, for example::
  19. mkdir -p ~/esp
  20. cd ~/esp
  21. tar -xzf ~/Downloads/xtensa-esp32-elf-osx-1.22.0-59.tar.gz
  22. The toolchain will be extracted into ``~/esp/xtensa-esp32-elf/`` directory.
  23. To use it, you will need to update your ``PATH`` environment variable in ``~/.profile`` file. To make ``xtensa-esp32-elf`` available for all terminal sessions, add the following line to your ``~/.profile`` file::
  24. export PATH=$PATH:$HOME/esp/xtensa-esp32-elf/bin
  25. Alternatively, you may create an alias for the above command. This way you can get the toolchain only when you need it. To do this, add different line to your ``~/.profile`` file::
  26. alias get_esp32="export PATH=$PATH:$HOME/esp/xtensa-esp32-elf/bin"
  27. Then when you need the toolchain you can type ``get_esp32`` on the command line and the toolchain will be added to your ``PATH``.
  28. Alternative Step 1: Compile the toolchain from source using crosstool-NG
  29. ========================================================================
  30. Instead of downloading binary toolchain from Espressif website (Step 1 above) you may build the toolchain yourself.
  31. If you can't think of a reason why you need to build it yourself, then probably it's better to stick with the binary version. However, here are some of the reasons why you might want to compile it from source:
  32. - if you want to customize toolchain build configuration
  33. - if you want to hack gcc or newlib or libstdc++
  34. - if you are curious and/or have time to spare
  35. - if you don't trust binaries downloaded from the Internet
  36. In any case, here are the steps to compile the toolchain yourself.
  37. - Install dependencies:
  38. - with MacPorts::
  39. sudo port install gsed gawk binutils gperf grep gettext ncurses
  40. - with homebrew (*TODO: provide list of packages for homebrew*)
  41. Create a case-sensitive filesystem image::
  42. hdiutil create ~/esp/crosstool.dmg -volname "ctng" -size 10g -fs "Case-sensitive HFS+"
  43. Mount it::
  44. hdiutil mount ~/esp/crosstool.dmg
  45. Create a symlink to your work directory::
  46. cd ~/esp
  47. ln -s /Volumes/ctng crosstool-NG
  48. Download ``crosstool-NG`` and build it::
  49. cd ~/esp
  50. git clone -b xtensa-1.22.x https://github.com/espressif/crosstool-NG.git
  51. cd crosstool-NG
  52. ./bootstrap && ./configure --prefix=$PWD && make install
  53. Build the toolchain::
  54. ./ct-ng xtensa-esp32-elf
  55. ./ct-ng build
  56. chmod -R u+w builds/xtensa-esp32-elf
  57. Toolchain will be built in ``~/esp/crosstool-NG/builds/xtensa-esp32-elf``. Follow instructions given in the previous section to add the toolchain to your ``PATH``.
  58. Step 2: Getting ESP-IDF from github
  59. ===================================
  60. Open Terminal.app, navigate to the directory you want to clone ESP-IDF and clone it using ``git clone`` command::
  61. cd ~/esp
  62. git clone --recursive https://github.com/espressif/esp-idf.git
  63. ESP-IDF will be downloaded into ``~/esp/esp-idf``.
  64. Note the ``--recursive`` option! If you have already cloned ESP-IDF without this option, run another command to get all the submodules::
  65. cd ~/esp/esp-idf
  66. git submodule update --init
  67. Step 3: Starting a project
  68. ==========================
  69. ESP-IDF by itself does not build a binary to run on the ESP32. The binary "app" comes from a project in a different directory. Multiple projects can share the same ESP-IDF directory.
  70. The easiest way to start a project is to download the template project from GitHub::
  71. cd ~/esp
  72. git clone https://github.com/espressif/esp-idf-template.git myapp
  73. This will download ``esp-idf-template`` project into ``~/esp/myapp`` directory.
  74. **IMPORTANT:** The esp-idf build system does not support spaces in paths to esp-idf or to projects.
  75. Step 4: Building and flashing the application
  76. =============================================
  77. In Terminal.app, go to the application directory which was obtained on the previous step::
  78. cd ~/esp/myapp
  79. Type a command like this to set the path to ESP-IDF directory::
  80. export IDF_PATH=~/esp/esp-idf
  81. At this point you may configure the serial port to be used for uploading. Run::
  82. make menuconfig
  83. Then navigate to "Serial flasher config" submenu and change value of "Default serial port" to match the serial port you will use. Also take a moment to explore other options which are configurable in ``menuconfig``.
  84. If you don't know device name for the serial port of your development board, run this command two times, first with the board unplugged, then with the board plugged in. The port which appears the second time is the one you need::
  85. ls /dev/tty.*
  86. Now you can build and flash the application. Run::
  87. make flash
  88. This will compile the application and all the ESP-IDF components, generate bootloader, partition table, and application binaries, and flash these binaries to your development board.
  89. Further reading
  90. ===============
  91. If you'd like to use the Eclipse IDE instead of running ``make``, check out the Eclipse setup guide in this directory.