Merge branch 'feature/compiler_rt_support' into 'master'

build: Adds support for compiler-rt in Clang toolchain

See merge request espressif/esp-idf!21213
This commit is contained in:
Alexey Gerenkov
2023-06-09 04:41:34 +08:00
23 changed files with 146 additions and 40 deletions
+9
View File
@@ -176,6 +176,15 @@ cache:
source ./export.sh
# Custom clang
if [[ ! -z "$CI_CLANG_DISTRO_URL" ]]; then
echo "Using custom clang from ${CI_CLANG_DISTRO_URL}"
wget $CI_CLANG_DISTRO_URL
ARCH_NAME=$(basename $CI_CLANG_DISTRO_URL)
tar -x -f $ARCH_NAME
export PATH=$PWD/esp-clang/bin:$PATH
fi
# Custom OpenOCD
if [[ ! -z "$OOCD_DISTRO_URL" && "$CI_JOB_STAGE" == "target_test" ]]; then
echo "Using custom OpenOCD from ${OOCD_DISTRO_URL}"