feat(tools): Add xtensa-lx106-elf toolchain url

This commit is contained in:
Li Qing Qiao
2020-09-08 17:09:51 +08:00
committed by Wu Jian Gang
parent 7b40b23a17
commit a05d6003da
4 changed files with 140 additions and 119 deletions

18
install.sh Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -e
set -u
export IDF_PATH=$(cd $(dirname $0); pwd)
echo "Installing ESP-IDF tools"
${IDF_PATH}/tools/idf_tools.py install
echo "Installing Python environment and packages"
${IDF_PATH}/tools/idf_tools.py install-python-env
basedir="$(dirname $0)"
echo "All done! You can now run:"
echo ""
echo " . ${basedir}/export.sh"
echo ""