Skip to content

Commit

Permalink
Merge #19309
Browse files Browse the repository at this point in the history
19309: ci/print_versions: print all ESP32 toolchains r=maribu a=benpicco



Co-authored-by: Benjamin Valentin <benjamin.valentin@bht-berlin.de>
  • Loading branch information
bors[bot] and benpicco authored Feb 24, 2023
2 parents e70f257 + 0ecba66 commit 1de75a6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion dist/tools/ci/print_toolchain_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ get_define() {
local cc="$1"
local line=
if command -v "$cc" 2>&1 >/dev/null; then
line=$(echo "$3" | "$cc" -x c -include "$2" -E -o - - 2>&1 | sed -e '/^[ ]*#/d' -e '/^[ ]*$/d')
line=$(echo "$3" | "$cc" -x c -include "$2" -E -o - - 2>/dev/null | sed -e '/^[ ]*#/d' -e '/^[ ]*$/d')
fi
if [ -z "$line" ]; then
line=missing
Expand Down Expand Up @@ -129,7 +129,10 @@ for p in \
riscv-none-elf \
riscv64-unknown-elf \
riscv-none-embed \
riscv32-esp-elf \
xtensa-esp32-elf \
xtensa-esp32s2-elf \
xtensa-esp32s3-elf \
xtensa-esp8266-elf \
; do
printf "%25s: %s\n" "$p-gcc" "$(get_cmd_version ${p}-gcc)"
Expand All @@ -145,7 +148,10 @@ for p in \
riscv-none-elf \
riscv64-unknown-elf \
riscv-none-embed \
riscv32-esp-elf \
xtensa-esp32-elf \
xtensa-esp32s2-elf \
xtensa-esp32s3-elf \
xtensa-esp8266-elf \
; do
printf "%25s: %s\n" "$p-newlib" "$(newlib_version ${p}-gcc)"
Expand Down

0 comments on commit 1de75a6

Please sign in to comment.