aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2022-12-25 19:14:13 -0800
committerJeremy Evans <code@jeremyevans.net>2022-12-25 19:14:13 -0800
commit1066d42ca8d9e55b415ad4d6abbe0c514a5d4add (patch)
tree56f45880c600edc364a4edbc0cd7fdc26579df06 /configure.ac
parentd29096f4a894c112b64ea860bdc2c71ad2e8eaaf (diff)
downloadruby-1066d42ca8d9e55b415ad4d6abbe0c514a5d4add.tar.gz
Enable arm64 coroutine implementation on OpenBSD/arm64
Tested by another OpenBSD developer and confirmed to significantly improve things.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
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
],