diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2024-04-24 14:38:26 +0200 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-09-19 14:59:24 +0900 |
| commit | 24b587e7ba08e9347d4b4f02c6442eac7ccba54c (patch) | |
| tree | b7b9c0ddbb0f7df4def9525f233509a54d6bcec4 | |
| parent | c362206a48cb34eb207ecf3df9ca53b487951caa (diff) | |
Use ppc64le coroutines for powerpc64-freebsd*
There is nothing endianness-related in ppc64le and all the tests pass on both ucontext and ppc64le coroutines on powerpc64-freebsd14.0
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/10595
| -rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f906dd73cd..45a181c1eb 100644 --- a/configure.ac +++ b/configure.ac @@ -2751,6 +2751,9 @@ AS_CASE([$coroutine_type], [yes|''], [ [aarch64-freebsd*], [ coroutine_type=arm64 ], + [powerpc64-freebsd*], [ + coroutine_type=ppc64le + ], [powerpc64le-freebsd*], [ coroutine_type=ppc64le ], |
