ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics
@ 2020-04-10 14:02 schwab
  2020-04-20  1:21 ` [ruby-core:97971] " mame
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: schwab @ 2020-04-10 14:02 UTC (permalink / raw)
  To: ruby-core

Issue #16774 has been reported by schwab (Andreas Schwab).

----------------------------------------
Bug #16774: Don't require sub-word atomics
https://bugs.ruby-lang.org/issues/16774

* Author: schwab (Andreas Schwab)
* Status: Open
* Priority: Normal
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN
----------------------------------------
On some architectures (like RISC-V) sub-word atomics are only available
when linking against -latomic, but the configure script doesn't do that,
causing the atomic checks to fail and the resulting ruby binary is
non-functional.  Ruby does not use sub-word atomic operations, rb_atomic_t
is defined to unsigned int, so use unsigned int when checking for atomic
operations.


---Files--------------------------------
0001-Don-t-require-sub-word-atomics.patch (1.41 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:97971] [Ruby master Bug#16774] Don't require sub-word atomics
  2020-04-10 14:02 [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics schwab
@ 2020-04-20  1:21 ` mame
  2020-08-28 21:49 ` [ruby-core:99761] " merch-redmine
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: mame @ 2020-04-20  1:21 UTC (permalink / raw)
  To: ruby-core

Issue #16774 has been updated by mame (Yusuke Endoh).


Great.  Thank you.

----------------------------------------
Bug #16774: Don't require sub-word atomics
https://bugs.ruby-lang.org/issues/16774#change-85201

* Author: schwab (Andreas Schwab)
* Status: Open
* Priority: Normal
* Backport: 2.5: REQUIRED, 2.6: REQUIRED, 2.7: REQUIRED
----------------------------------------
On some architectures (like RISC-V) sub-word atomics are only available
when linking against -latomic, but the configure script doesn't do that,
causing the atomic checks to fail and the resulting ruby binary is
non-functional.  Ruby does not use sub-word atomic operations, rb_atomic_t
is defined to unsigned int, so use unsigned int when checking for atomic
operations.


---Files--------------------------------
0001-Don-t-require-sub-word-atomics.patch (1.41 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:99761] [Ruby master Bug#16774] Don't require sub-word atomics
  2020-04-10 14:02 [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics schwab
  2020-04-20  1:21 ` [ruby-core:97971] " mame
@ 2020-08-28 21:49 ` merch-redmine
  2021-03-20  4:57 ` [ruby-core:102942] " nagachika00
  2021-04-05  0:05 ` [ruby-core:103228] " usa
  3 siblings, 0 replies; 5+ messages in thread
From: merch-redmine @ 2020-08-28 21:49 UTC (permalink / raw)
  To: ruby-core

Issue #16774 has been updated by jeremyevans0 (Jeremy Evans).

Status changed from Open to Closed

This was committed at commit:abe2e7de4d1f2d5861d7c9ab9c7e778f2ee1dcd2

----------------------------------------
Bug #16774: Don't require sub-word atomics
https://bugs.ruby-lang.org/issues/16774#change-87265

* Author: schwab (Andreas Schwab)
* Status: Closed
* Priority: Normal
* Backport: 2.5: REQUIRED, 2.6: REQUIRED, 2.7: REQUIRED
----------------------------------------
On some architectures (like RISC-V) sub-word atomics are only available
when linking against -latomic, but the configure script doesn't do that,
causing the atomic checks to fail and the resulting ruby binary is
non-functional.  Ruby does not use sub-word atomic operations, rb_atomic_t
is defined to unsigned int, so use unsigned int when checking for atomic
operations.


---Files--------------------------------
0001-Don-t-require-sub-word-atomics.patch (1.41 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:102942] [Ruby master Bug#16774] Don't require sub-word atomics
  2020-04-10 14:02 [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics schwab
  2020-04-20  1:21 ` [ruby-core:97971] " mame
  2020-08-28 21:49 ` [ruby-core:99761] " merch-redmine
@ 2021-03-20  4:57 ` nagachika00
  2021-04-05  0:05 ` [ruby-core:103228] " usa
  3 siblings, 0 replies; 5+ messages in thread
From: nagachika00 @ 2021-03-20  4:57 UTC (permalink / raw)
  To: ruby-core

Issue #16774 has been updated by nagachika (Tomoyuki Chikanaga).

Backport changed from 2.5: REQUIRED, 2.6: REQUIRED, 2.7: REQUIRED to 2.5: REQUIRED, 2.6: REQUIRED, 2.7: DONE

ruby_2_7 ba6f0879448ebc80c7a595c369c59b6d8dfbdf3e merged revision(s) abe2e7de4d1f2d5861d7c9ab9c7e778f2ee1dcd2.

----------------------------------------
Bug #16774: Don't require sub-word atomics
https://bugs.ruby-lang.org/issues/16774#change-91008

* Author: schwab (Andreas Schwab)
* Status: Closed
* Priority: Normal
* Backport: 2.5: REQUIRED, 2.6: REQUIRED, 2.7: DONE
----------------------------------------
On some architectures (like RISC-V) sub-word atomics are only available
when linking against -latomic, but the configure script doesn't do that,
causing the atomic checks to fail and the resulting ruby binary is
non-functional.  Ruby does not use sub-word atomic operations, rb_atomic_t
is defined to unsigned int, so use unsigned int when checking for atomic
operations.


---Files--------------------------------
0001-Don-t-require-sub-word-atomics.patch (1.41 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:103228] [Ruby master Bug#16774] Don't require sub-word atomics
  2020-04-10 14:02 [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics schwab
                   ` (2 preceding siblings ...)
  2021-03-20  4:57 ` [ruby-core:102942] " nagachika00
@ 2021-04-05  0:05 ` usa
  3 siblings, 0 replies; 5+ messages in thread
From: usa @ 2021-04-05  0:05 UTC (permalink / raw)
  To: ruby-core

Issue #16774 has been updated by usa (Usaku NAKAMURA).

Backport changed from 2.5: REQUIRED, 2.6: REQUIRED, 2.7: DONE to 2.5: REQUIRED, 2.6: DONE, 2.7: DONE

ruby_2_6 r67932 merged revision(s) abe2e7de4d1f2d5861d7c9ab9c7e778f2ee1dcd2.

----------------------------------------
Bug #16774: Don't require sub-word atomics
https://bugs.ruby-lang.org/issues/16774#change-91306

* Author: schwab (Andreas Schwab)
* Status: Closed
* Priority: Normal
* Backport: 2.5: REQUIRED, 2.6: DONE, 2.7: DONE
----------------------------------------
On some architectures (like RISC-V) sub-word atomics are only available
when linking against -latomic, but the configure script doesn't do that,
causing the atomic checks to fail and the resulting ruby binary is
non-functional.  Ruby does not use sub-word atomic operations, rb_atomic_t
is defined to unsigned int, so use unsigned int when checking for atomic
operations.


---Files--------------------------------
0001-Don-t-require-sub-word-atomics.patch (1.41 KB)


-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-05  0:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-10 14:02 [ruby-core:97800] [Ruby master Bug#16774] Don't require sub-word atomics schwab
2020-04-20  1:21 ` [ruby-core:97971] " mame
2020-08-28 21:49 ` [ruby-core:99761] " merch-redmine
2021-03-20  4:57 ` [ruby-core:102942] " nagachika00
2021-04-05  0:05 ` [ruby-core:103228] " usa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).