From 4755639bdc5890affbc473e48b92b134b20d80e6 Mon Sep 17 00:00:00 2001 From: Grant Date: Wed, 17 Jun 2026 15:25:05 -0500 Subject: [PATCH] Keep riscv out of the default make build --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 1349a58..ed0e8f9 100644 --- a/Makefile +++ b/Makefile @@ -15,4 +15,9 @@ # # Chain targets when needed: `make clean arm install`. +# Only x86_64 and aarch64 are supported and declared in the manifest. The shared +# s9pk.mk defaults ARCHES to include riscv; override it here so a bare `make` +# (which builds every arch in ARCHES) does not attempt an unverified riscv build. +ARCHES := x86 arm + include s9pk.mk