mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	 798b52af1d
			
		
	
	798b52af1d
	
	
	
		
			
			Updated GDB to 9.2 version for xtensa chips
    Fixed coredump work for xtensa chips
    Fixed backtrace for xtensa chips
    Fixed multilib for riscv32 chips
    Fixed running GDB on some RaspberryPi configuration for riscv32 chip
    Fixed support of fnmatch(), iconv() and some other posix functions in stdlib
    Closes https://github.com/espressif/esp-idf/issues/6124
    Closes https://github.com/espressif/esp-idf/issues/2484
    Closes https://github.com/espressif/esp-idf/issues/3264
    Closes https://github.com/espressif/crosstool-NG/issues/13
    Closes https://github.com/espressif/crosstool-NG/pull/16
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| #
 | |
| # Setup script to configure an MSYS2 environment for ESP-IDF.
 | |
| #
 | |
| # Use of this script is optional, there is also a prebuilt MSYS2 environment available
 | |
| # which can be downloaded and used as-is.
 | |
| #
 | |
| # See https://docs.espressif.com/projects/esp-idf/en/latest/get-started/windows-setup.html for full details.
 | |
| 
 | |
| if [ "$OSTYPE" != "msys" ]; then
 | |
|   echo "This setup script expects to be run from an MSYS2 environment on Windows."
 | |
|   exit 1
 | |
| fi
 | |
| if ! [ -x /bin/pacman ]; then
 | |
|   echo "This setup script expects to use the pacman package manager from MSYS2."
 | |
|   exit 1
 | |
| fi
 | |
| if [ "$MSYSTEM" != "MINGW32" ]; then
 | |
|   echo "This setup script must be started from the 'MSYS2 MinGW 32-bit' start menu shortcut"
 | |
|   echo "OR by running `cygpath -w /mingw32.exe`"
 | |
|   echo "(The current MSYSTEM mode is $MSYSTEM but it expects it to be MINGW32)"
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| # if update-core still exists, run it to get the latest core MSYS2 system
 | |
| # (which no longer needs or includes update-core!)
 | |
| #
 | |
| # If this step runs, it will require a full restart of MSYS2 before it
 | |
| # can continue.
 | |
| [ -x /usr/bin/update-core ] && /usr/bin/update-core
 | |
| 
 | |
| set -e
 | |
| 
 | |
| pacman --noconfirm -Syu # This step may require the terminal to be closed and restarted
 | |
| 
 | |
| pacman --noconfirm -S --needed gettext-devel gcc git make ncurses-devel flex bison gperf vim \
 | |
|        mingw-w64-i686-python-pip mingw-w64-i686-python-cryptography unzip winpty mingw-w64-i686-gcc
 | |
| 
 | |
| # if IDF_PATH is set, install requirements now as well
 | |
| if [ -n "$IDF_PATH" ]; then
 | |
| 	python -m pip install -r "$IDF_PATH/requirements.txt"
 | |
| fi
 | |
| 
 | |
| # Automatically download precompiled toolchain, unpack at /opt/xtensa-esp32-elf/
 | |
| TOOLCHAIN_ZIP=xtensa-esp32-elf-gcc8_4_0-esp-2021r2-win32.zip
 | |
| echo "Downloading precompiled toolchain ${TOOLCHAIN_ZIP}..."
 | |
| cd ~
 | |
| curl -LO --retry 10 https://dl.espressif.com/dl/${TOOLCHAIN_ZIP}
 | |
| mkdir -p /opt
 | |
| cd /opt
 | |
| rm -rf /opt/xtensa-esp32-elf  # for upgrades
 | |
| unzip ~/${TOOLCHAIN_ZIP}
 | |
| rm ~/${TOOLCHAIN_ZIP}
 | |
| 
 | |
| cat > /etc/profile.d/esp32_toolchain.sh << EOF
 | |
| # This file was created by ESP-IDF windows_install_prerequisites.sh
 | |
| # and will be overwritten if that script is run again.
 | |
| export PATH="/opt/xtensa-esp32-elf/bin:\$PATH"
 | |
| EOF
 | |
| 
 | |
| # clean up pacman package cache to save some disk space
 | |
| pacman --noconfirm -Scc
 | |
| 
 | |
| cat << EOF
 | |
| ************************************************
 | |
| MSYS2 environment is now ready to use ESP-IDF.
 | |
| 
 | |
| 1) Run 'source /etc/profile' to add the toolchain to
 | |
| your path in this terminal. This command produces no output.
 | |
| You only need to do this once, future terminals do this
 | |
| automatically when opened.
 | |
| 
 | |
| 2) After ESP-IDF is set up (see setup guide), edit the file
 | |
| `cygpath -w /etc/profile`
 | |
| and add a line to set the variable IDF_PATH so it points to the
 | |
| IDF directory, ie:
 | |
| 
 | |
| export IDF_PATH=/c/path/to/esp-idf/directory
 | |
| 
 | |
| ************************************************
 | |
| EOF
 |