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

makefiles/arch/riscv: redirect error message to /dev/null

This commit is contained in:
Leandro Lanzieri 2020-12-17 15:23:21 +01:00
parent 6eb8e17861
commit aaf4a738f9
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -25,7 +25,7 @@ TARGET_ARCH_RISCV ?= \
$(subst -gcc,,\
$(notdir \
$(word 1,\
$(foreach triple,$(_TRIPLES_TO_TEST),$(shell which $(triple)-gcc))))))
$(foreach triple,$(_TRIPLES_TO_TEST),$(shell which $(triple)-gcc 2> /dev/null))))))
TARGET_ARCH ?= $(TARGET_ARCH_RISCV)