From 1066d42ca8d9e55b415ad4d6abbe0c514a5d4add Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Sun, 25 Dec 2022 19:14:13 -0800 Subject: [PATCH] Enable arm64 coroutine implementation on OpenBSD/arm64 Tested by another OpenBSD developer and confirmed to significantly improve things. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 218c441ff7..a2a0c1e387 100644 --- a/configure.ac +++ b/configure.ac @@ -2648,6 +2648,9 @@ AS_CASE([$coroutine_type], [yes|''], [ [i386-openbsd*], [ coroutine_type=x86 ], + [aarch64-openbsd*], [ + coroutine_type=arm64 + ], [*-openbsd*], [ coroutine_type=pthread ],