From 7318ca60842c372f14c85797c4312377fac17f63 Mon Sep 17 00:00:00 2001 From: Sebastian Sumpf Date: Thu, 18 Feb 2021 08:59:38 +0100 Subject: [PATCH] depot: add 'riscv' to depot spec issue #4021 --- tool/run/depot.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tool/run/depot.inc b/tool/run/depot.inc index b72010f974..35cdf162b5 100644 --- a/tool/run/depot.inc +++ b/tool/run/depot.inc @@ -24,6 +24,10 @@ proc depot_spec { } { if {[have_spec arm_v6]} { return "arm_v6" } if {[have_spec arm_v7a]} { return "arm_v7a" } if {[have_spec arm_v8a]} { return "arm_v8a" } + if {[have_spec riscv]} { return "riscv" } + + puts stderr "Error: unsupported architecture" + exit 1 }