From c362206a48cb34eb207ecf3df9ca53b487951caa Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Mon, 22 Apr 2024 09:42:40 +0200 Subject: [PATCH] Use ppc64le coroutines on powerpc64le-freebsd* Only one ractor-related test fails, but it also fails with ucontext. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) 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 ],