1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

build system: Detect more RISC-V target triples

Omitting the middle part of `riscv32-none-elf` is apparently legal and
done by Arch Linux.
This commit is contained in:
Marian Buschsieweke 2022-04-14 17:03:16 +02:00
parent 10f65f1631
commit c89331f93b
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -15,11 +15,14 @@
_TRIPLES_TO_TEST := \
riscv-none-embed \
riscv32-none-elf \
riscv-none-elf \
riscv32-unknown-elf \
riscv32-elf \
riscv-none-elf \
riscv-unknown-elf \
riscv-elf \
riscv64-none-elf \
riscv64-unknown-elf
riscv64-unknown-elf \
riscv64-elf
TARGET_ARCH_RISCV ?= \
$(strip \