From 036848a375bc06b6381dee205a7769cbf763484c Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 2 Jun 2020 18:26:51 +1000 Subject: [PATCH 1/2] windows: Update MSYS2 pre-compiled legacy build environment * Bundled with esp2020r2 toolchain * Built with Python 3 & latest MSYS2 packages --- docs/en/get-started-legacy/windows-setup.rst | 2 +- docs/zh_CN/get-started-legacy/windows-setup.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/get-started-legacy/windows-setup.rst b/docs/en/get-started-legacy/windows-setup.rst index eb6b28922b..5f5df50fd2 100644 --- a/docs/en/get-started-legacy/windows-setup.rst +++ b/docs/en/get-started-legacy/windows-setup.rst @@ -16,7 +16,7 @@ Toolchain Setup The quick setup is to download the Windows all-in-one toolchain & MSYS2 zip file from dl.espressif.com: -https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_gcc8_toolchain-20191231.zip +https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_esp2020r2_toolchain-20200601.zip Unzip the zip file to ``C:\`` (or some other location, but this guide assumes ``C:\``) and it will create an ``msys32`` directory with a pre-prepared environment. diff --git a/docs/zh_CN/get-started-legacy/windows-setup.rst b/docs/zh_CN/get-started-legacy/windows-setup.rst index 853bfdb62b..f9a067b1cf 100644 --- a/docs/zh_CN/get-started-legacy/windows-setup.rst +++ b/docs/zh_CN/get-started-legacy/windows-setup.rst @@ -16,7 +16,7 @@ Windows 系统没有内置的 "make" 环境,所以除了安装工具链之外 最简便的工具链设置方法是从下方地址下载 Windows 多合一工具链和 MSYS2 压缩包文件: -https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20190611.zip +https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_esp2020r2_toolchain-20200601.zip 请将压缩包文件解压至 ``C:\``(或其他目录,但本文档中以 ``C:\`` 为例),该文件将为您创建一个带有预配置环境的 ``msys32`` 目录。 From 9b6260949987de2f67328d1bb8137ee089aa188b Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 4 Jun 2020 18:39:20 +1000 Subject: [PATCH 2/2] msys2: Remove python version consideration in pacman commands --- tools/check_python_dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/check_python_dependencies.py b/tools/check_python_dependencies.py index b402ee0d26..4a66af6009 100755 --- a/tools/check_python_dependencies.py +++ b/tools/check_python_dependencies.py @@ -80,7 +80,7 @@ if __name__ == "__main__": elif sys.platform == "win32" and os.environ.get("MSYSTEM", None) == "MINGW32" and "/mingw32/bin/python" in sys.executable: print("The recommended way to install a packages is via \"pacman\". Please run \"pacman -Ss \" for" " searching the package database and if found then " - "\"pacman -S mingw-w64-i686-python{}-\" for installing it.".format(sys.version_info[0],)) + "\"pacman -S mingw-w64-i686-python-\" for installing it.") print("NOTE: You may need to run \"pacman -Syu\" if your package database is older and run twice if the " "previous run updated \"pacman\" itself.") print("Please read https://github.com/msys2/msys2/wiki/Using-packages for further information about using " @@ -95,7 +95,7 @@ if __name__ == "__main__": continue elif requirement.startswith('setuptools'): print("Please run the following command to install MSYS2's MINGW Python setuptools package:") - print("pacman -S mingw-w64-i686-python{}-setuptools".format(sys.version_info[0],)) + print("pacman -S mingw-w64-i686-python-setuptools") continue else: print('Please follow the instructions found in the "Set up the tools" section of '