-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update installed toolchain for Esp8266 to latest (Feb 23)
- Loading branch information
mikee47
committed
Jun 2, 2024
1 parent
18b056f
commit 7c2ff7c
Showing
2 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
REM Esp8266 install.cmd | ||
|
||
call :install "%ESP_HOME%" x86_64-w64-mingw32.xtensa-lx106-elf-e6a192b.201211.zip | ||
goto :EOF | ||
set EQT_REPO=https://github.com/earlephilhower/esp-quick-toolchain/releases/download/3.2.0-gcc10.3 | ||
set EQT_TOOLCHAIN=x86_64-w64-mingw32.xtensa-lx106-elf-c791b74.230224.zip | ||
|
||
:install | ||
mkdir %1 | ||
curl -Lo %DOWNLOADS%/%2 %SMINGTOOLS%/%2 | ||
7z -o%1 x %DOWNLOADS%/%2 | ||
mkdir %ESP_HOME% | ||
curl -Lo %DOWNLOADS%/%EQT_TOOLCHAIN% %EQT_REPO%/%EQT_TOOLCHAIN% | ||
7z -o%ESP_HOME% x %DOWNLOADS%/%EQT_TOOLCHAIN% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters