1********************************************
2Linux 平台工具链的标准设置(传统 GNU Make)
3********************************************
4:link_to_translation:`en:[English]`
5
6.. include:: ../gnu-make-legacy.rst
7
8安装准备
9========
10
11编译 ESP-IDF 需要以下软件包:
12
13- CentOS 7::
14
15    sudo yum install gcc git wget make flex bison gperf python python2-cryptography
16
17- Ubuntu and Debian::
18
19    sudo apt-get install gcc git wget make flex bison gperf python python-pip python-setuptools python-serial python-cryptography python-future python-pyparsing python-pyelftools libffi-dev libssl-dev
20
21- Arch::
22
23    sudo pacman -S --needed gcc git make flex bison gperf python-pyserial python-cryptography python-future python-pyparsing python-pyelftools
24
25.. note::
26
27    一些旧的(2014年之前)Linux 发行版中使用的 ``pyserial`` 版本可能是 2.x ,ESP-IDF 并不支持。这种情况下,请按照 :ref:`get-started-get-packages-legacy` 章节的介绍,使用 ``pip`` 安装软件包。
28
29工具链设置
30==========
31
32.. include-build-file:: inc/download-links.inc
33
34Linux 版的 ESP32 工具链可以从 Espressif 的网站下载:
35
36- 64 位 Linux:
37
38    |download_link_linux64|
39
40- 32 位 Linux:
41
42    |download_link_linux32|
43
441. 下载压缩文件之后,解压到 ``~/esp`` 目录中:
45
46    - 64 位 Linux:
47
48    .. include-build-file:: inc/unpack-code-linux64.inc
49
50    - 32 位 Linux:
51
52    .. include-build-file:: inc/unpack-code-linux32.inc
53
54.. _setup-linux-toolchain-add-it-to-path-legacy:
55
562. 工具链将被解压到 ``~/esp/xtensa-esp32-elf/`` 路径下。
57
58   为了正常使用工具链,您必须更新 ``~/.profile`` 文件中的 ``PATH`` 环境变量。此外,您还可以在 ``~/.profile`` 文件中增加以下代码,这样一来,所有终端窗口均可以使用 ``xtensa-esp32-elf``::
59
60        export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"
61
62   或者,您可以为上述命令创建一个别名。这样,您只有在需要时才可以使用工具链。如需设置别名,请将以下代码增加至您的 ``〜/ .profile`` 文件中::
63
64        alias get_esp32='export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"'
65
66   这样,您可以在终端输入 ``get_esp32`` 命令将工具链添加至您的 ``PATH``,从而使用工具链。
67
68   .. note::
69
70    如果您已将 ``/bin/bash`` 设置为登录 shell,且同时存在 ``.bash_profile`` 和 ``.profile``,则请更新 ``.bash_profile`` 。在 CentOS 环境下, ``alias`` 需要添加到 ``.bashrc`` 文件中。
71
723. 退出并重新登录以使 ``.profile`` 更改生效。运行以下命令来检查 ``PATH`` 设置是否正确 ::
73
74        printenv PATH
75
76   检查字符串的开头是否包含类似的工具链路径::
77
78    $ printenv PATH
79    /home/user-name/esp/xtensa-esp32-elf/bin:/home/user-name/bin:/home/user-name/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
80
81   这里,您需要将  ``/home/user-name`` 替换为您的安装主目录。
82
83
84权限问题 /dev/ttyUSB0
85------------------------------
86
87某些 Linux 版本可能在烧写 ESP32 时会出现 ``Failed to open port /dev/ttyUSB0`` 错误消息,这可以通过 :ref:`将当前用户添加到 dialout 组 <linux-dialout-group-legacy>` 来解决。
88
89
90后续步骤
91==========
92
93继续设置开发环境,请前往 :ref:`get-started-get-esp-idf-legacy` 章节。
94
95
96相关文档
97=================
98
99.. toctree::
100    :maxdepth: 1
101
102    linux-setup-scratch
103
104
105.. _AUR: https://wiki.archlinux.org/index.php/Arch_User_Repository
106
107