diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-06 13:37:44 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-06 13:57:43 +0900 |
| commit | 0243f3ffbd489462ca808529200b08f3a409c1ba (patch) | |
| tree | 6cb547e7b756dae801f4aba5d5b3b0a560e4903c /internal/rosa/llvm.go | |
| parent | cd0beeaf8ed5fb81ba20375517c7a3bf34fd27cd (diff) | |
internal/rosa/stage0: add riscv64 tarball
This had not yet passed all test suites because emulator is prohibitively slow.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/llvm.go')
| -rw-r--r-- | internal/rosa/llvm.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/rosa/llvm.go b/internal/rosa/llvm.go index eca68989..5305884b 100644 --- a/internal/rosa/llvm.go +++ b/internal/rosa/llvm.go @@ -207,6 +207,8 @@ func (t Toolchain) newLLVM() (musl, compilerRT, runtimes, clang pkg.Artifact) { target = "X86" case "arm64": target = "AArch64" + case "riscv64": + target = "RISCV" default: panic("unsupported target " + runtime.GOARCH) |
