summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPiotr Kubaj <[email protected]>2024-04-22 09:42:40 +0200
committerHiroshi SHIBATA <[email protected]>2024-09-19 14:59:24 +0900
commitc362206a48cb34eb207ecf3df9ca53b487951caa (patch)
tree85f984dfec3512d9d7710599aced3214453acc01 /configure.ac
parentc193ca52180360a3cb24648ffedd1b2181989e9d (diff)
Use ppc64le coroutines on powerpc64le-freebsd*
Only one ractor-related test fails, but it also fails with ucontext.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/10595
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 9ccbd53f17..f906dd73cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2751,6 +2751,9 @@ AS_CASE([$coroutine_type], [yes|''], [
[aarch64-freebsd*], [
coroutine_type=arm64
],
+ [powerpc64le-freebsd*], [
+ coroutine_type=ppc64le
+ ],
[x86_64-netbsd*], [
coroutine_type=amd64
],