mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feature/msys2_env_update_v4.0' into 'release/v4.0'
windows: Update MSYS2 pre-compiled legacy build environment (v4.0) See merge request espressif/esp-idf!9144
This commit is contained in:
commit
1e95aba03a
@ -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:
|
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.
|
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.
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ Windows 没有内置的 "make" 环境,因此如果要安装工具链,你需
|
|||||||
|
|
||||||
快速设置的方法是从 dl.espressif.com 下载集成在一起的工具链和 MSYS2 压缩文件:
|
快速设置的方法是从 dl.espressif.com 下载集成在一起的工具链和 MSYS2 压缩文件:
|
||||||
|
|
||||||
https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20181001.zip
|
https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_esp2020r2_toolchain-20200601.zip
|
||||||
|
|
||||||
将 zip 压缩文件解压到 ``C:\`` (或其它路径,这里假设是 ``C:\``),它会使用预先准备的环境创建一个 ``msys32`` 目录。
|
将 zip 压缩文件解压到 ``C:\`` (或其它路径,这里假设是 ``C:\``),它会使用预先准备的环境创建一个 ``msys32`` 目录。
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ if __name__ == "__main__":
|
|||||||
elif sys.platform == "win32" and os.environ.get("MSYSTEM", None) == "MINGW32" and "/mingw32/bin/python" in sys.executable:
|
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 <package_name>\" for"
|
print("The recommended way to install a packages is via \"pacman\". Please run \"pacman -Ss <package_name>\" for"
|
||||||
" searching the package database and if found then "
|
" searching the package database and if found then "
|
||||||
"\"pacman -S mingw-w64-i686-python{}-<package_name>\" for installing it.".format(sys.version_info[0],))
|
"\"pacman -S mingw-w64-i686-python-<package_name>\" for installing it.")
|
||||||
print("NOTE: You may need to run \"pacman -Syu\" if your package database is older and run twice if the "
|
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.")
|
"previous run updated \"pacman\" itself.")
|
||||||
print("Please read https://github.com/msys2/msys2/wiki/Using-packages for further information about using "
|
print("Please read https://github.com/msys2/msys2/wiki/Using-packages for further information about using "
|
||||||
@ -90,7 +90,7 @@ if __name__ == "__main__":
|
|||||||
continue
|
continue
|
||||||
elif requirement.startswith('setuptools'):
|
elif requirement.startswith('setuptools'):
|
||||||
print("Please run the following command to install MSYS2's MINGW Python setuptools package:")
|
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
|
continue
|
||||||
else:
|
else:
|
||||||
print('Please refer to the Get Started section of the ESP-IDF Programming Guide for setting up the required'
|
print('Please refer to the Get Started section of the ESP-IDF Programming Guide for setting up the required'
|
||||||
|
Loading…
Reference in New Issue
Block a user