[前][次][番号順一覧][スレッド一覧]

ruby-changes:67167

From: DC <ko1@a...>
Date: Mon, 16 Aug 2021 09:07:07 +0900 (JST)
Subject: [ruby-changes:67167] f8f6d9895d (master): coroutine use asm version for handful of architectures for freebsd.

https://git.ruby-lang.org/ruby.git/commit/?id=f8f6d9895d

From f8f6d9895d9593ed3d8f552da3ae2d261ff28135 Mon Sep 17 00:00:00 2001
From: DC <devnexen@g...>
Date: Sun, 15 Aug 2021 13:31:54 +0100
Subject: coroutine use asm version for handful of architectures for freebsd.

---
 configure.ac | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/configure.ac b/configure.ac
index d018e8a..755e556 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2536,6 +2536,15 @@ AS_CASE([$coroutine_type], [yes|''], [ https://github.com/ruby/ruby/blob/trunk/configure.ac#L2536
         [riscv64-linux*], [
             coroutine_type=riscv64
         ],
+        [x86_64-freebsd*], [
+            coroutine_type=amd64
+        ],
+        [i386-freebsd*], [
+            coroutine_type=x86
+        ],
+        [aarch64-freebsd*], [
+            coroutine_type=arm64
+        ],
         [x86_64-openbsd*], [
             coroutine_type=amd64
         ],
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]