summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Carlier <devnexen@gmail.com>2021-08-23 13:01:23 +0100
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-24 10:52:04 +0900
commit8d2af51a783fa3490c158b110629110ab3257f56 (patch)
tree21a75901a0275e8fc7c38d724869ccbf6902dbe5 /configure.ac
parentd9f084ed142f8f3f76041237f3a507171b4d8c3c (diff)
netbsd coroutine uses assembly instead and little build fix.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4762
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2449887301..341d535235 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2545,6 +2545,15 @@ AS_CASE([$coroutine_type], [yes|''], [
[aarch64-freebsd*], [
coroutine_type=arm64
],
+ [x86_64-netbsd*], [
+ coroutine_type=amd64
+ ],
+ [i386-netbsd*], [
+ coroutine_type=x86
+ ],
+ [aarch64-netbsd*], [
+ coroutine_type=arm64
+ ],
[x86_64-openbsd*], [
coroutine_type=amd64
],