2020-03-24 08:09:15 +00:00
|
|
|
|
*********************************************
|
2018-02-03 21:12:13 +00:00
|
|
|
|
Linux 平台工具链的标准设置
|
2020-03-24 08:09:15 +00:00
|
|
|
|
*********************************************
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
:link_to_translation:`en:[English]`
|
2018-05-03 04:22:35 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
安装准备
|
|
|
|
|
========
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
|
|
|
|
编译 ESP-IDF 需要以下软件包:
|
|
|
|
|
|
|
|
|
|
- CentOS 7::
|
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
sudo yum install git wget ncurses-devel flex bison gperf python cmake ninja-build ccache
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
- Ubuntu and Debian::
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
sudo apt-get install git wget libncurses-dev flex bison gperf python python-pip python-setuptools cmake ninja-build ccache libffi-dev libssl-dev
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
|
|
|
|
- Arch::
|
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
sudo pacman -S --needed gcc git make ncurses flex bison gperf python-pip cmake ninja ccache
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2018-08-16 02:31:04 +00:00
|
|
|
|
.. note::
|
2020-03-24 08:09:15 +00:00
|
|
|
|
|
|
|
|
|
使用 ESP-IDF 需要 CMake 3.5 或以上版本。较早版本的 Linux 可能需要升级才能向后移植仓库,或安装 "cmake3" 软件包,而不是安装 "cmake"。
|
2018-08-16 02:31:04 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
其他提示
|
|
|
|
|
========
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
权限问题 /dev/ttyUSB0
|
|
|
|
|
----------------------
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
使用某些 Linux 版本向 ESP32 烧写固件时,可能会出现 ``Failed to open port /dev/ttyUSB0`` 错误消息。此时,可以将当前用户增加至 :ref:` Linux Dialout 组 <linux-dialout-group>`。
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
Arch Linux 用户
|
|
|
|
|
----------------
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
在 Arch Linux 中运行预编译 gdb (xtensa-esp32-elf-gdb) 需要 ncurses 5,但 Arch 会使用 ncurses 6。
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
不过,AUR_ 中有针对原生和 lib32 配置的向下兼容库:
|
2019-06-25 01:26:53 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
- https://aur.archlinux.org/packages/ncurses5-compat-libs/
|
|
|
|
|
- https://aur.archlinux.org/packages/lib32-ncurses5-compat-libs/
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
在安装这些软件包之前,您可能需要将作者的公钥添加到您的密钥环中,具体参考上方的“注释”部分。
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
此外,您也可以使用 crosstool-NG 编译一个链接到 ncurses 6 的 gdb。
|
2019-06-25 01:26:53 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
设置 Ubuntu 和 Debian 默认使用 Python 3
|
|
|
|
|
------------------------------------------------
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
目前,Ubuntu 和 Debian 仍使用 Python 2.7 为默认编译器。Python3 可通过以下方式安装::
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
sudo apt-get install python3 python3-pip python3-setuptools
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
运行以下指令,设置 Python 3 为默认编译器::
|
2019-06-25 01:26:53 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
|
|
此改动将影响系统中的所有应用。
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
|
|
|
|
后续步骤
|
2020-03-24 08:09:15 +00:00
|
|
|
|
========
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
继续设置开发环境,请前往 :ref:`get-started-get-esp-idf` 章节。
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
|
|
|
|
|
2019-06-25 01:26:53 +00:00
|
|
|
|
相关文档
|
2020-03-24 08:09:15 +00:00
|
|
|
|
========
|
2018-02-03 21:12:13 +00:00
|
|
|
|
|
2019-06-25 01:26:53 +00:00
|
|
|
|
.. toctree::
|
2020-03-24 08:09:15 +00:00
|
|
|
|
:maxdepth: 1
|
2019-06-25 01:26:53 +00:00
|
|
|
|
|
2020-03-24 08:09:15 +00:00
|
|
|
|
linux-setup-scratch
|
2019-06-25 01:26:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. _AUR: https://wiki.archlinux.org/index.php/Arch_User_Repository
|