mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #6585 from neiljay/pr/update_toolchain_info_script_for_mips_v2
dist: update toolchain info script for mips
This commit is contained in:
commit
b6ea92d047
4
dist/tools/ci/print_toolchain_versions.sh
vendored
4
dist/tools/ci/print_toolchain_versions.sh
vendored
@ -53,7 +53,7 @@ VER=$(gcc --version | head -n 1)
|
||||
if [ -n "$VER" ]; then
|
||||
printf "%20s: %s\n" "native gcc" "$VER"
|
||||
fi
|
||||
for p in msp430 avr arm-none-eabi; do
|
||||
for p in msp430 avr arm-none-eabi mips-mti-elf; do
|
||||
printf "%20s: %s\n" "$p-gcc" "$(gcc_version "$p")"
|
||||
done
|
||||
VER=$(clang --version | head -n 1)
|
||||
@ -61,7 +61,7 @@ if [ -n "$VER" ]; then
|
||||
printf "%20s: %s\n" "clang" "$VER"
|
||||
fi
|
||||
|
||||
for p in arm-none-eabi; do
|
||||
for p in arm-none-eabi mips-mti-elf; do
|
||||
printf "%20s: %s\n" "$p-newlib" "$(newlib_version "$p")"
|
||||
done
|
||||
for p in avr; do
|
||||
|
Loading…
Reference in New Issue
Block a user