Skip to content
Snippets Groups Projects
Commit fa962895 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

dist/tools/ci/print_toolchain_versions.sh: add riscv toolchain

parent 666650e6
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ avr_libc_version() {
printf "%s\n" "Installed compiler toolchains "
printf "%s\n" "-----------------------------"
printf "%21s: %s\n" "native gcc" "$(get_cmd_version gcc)"
for p in arm-none-eabi avr mips-mti-elf msp430; do
for p in arm-none-eabi avr mips-mti-elf msp430 riscv-none-embed; do
printf "%21s: %s\n" "$p-gcc" "$(get_cmd_version ${p}-gcc)"
done
printf "%21s: %s\n" "clang" "$(get_cmd_version clang)"
......@@ -59,7 +59,7 @@ printf "\n"
printf "%s\n" "Installed compiler libs"
printf "%s\n" "-----------------------"
# platform specific newlib version
for p in arm-none-eabi mips-mti-elf; do
for p in arm-none-eabi mips-mti-elf riscv-none-embed; do
printf "%21s: %s\n" "$p-newlib" "$(newlib_version ${p}-gcc)"
done
# avr libc version
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment