commit fd5d8f4d39b4428781caa098f4ce36b9dd6b7153
parent 62340ad33183e634ecf96a2764f3fb818d64147d
Author: Josiah Frentsos <jfrent@tilde.team>
Date: Thu, 17 Nov 2022 09:31:36 -0500
rt: Fix architecture detection on OpenBSD/arm64
Signed-off-by: Josiah Frentsos <jfrent@tilde.team>
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/rt/configure b/rt/configure
@@ -54,7 +54,10 @@ rt() {
amd64)
arch=x86_64
;;
- aarch64|riscv64)
+ arm64)
+ arch=aarch64
+ ;;
+ riscv64)
;;
*)
printf "unsupported OpenBSD arch %s\n" "$arch" >&2