mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Ruby31: add support for Darwin ppc/ppc64 (#5927)
* add coroutines for ppc & ppc64 * fix universal coroutine to include ppc & ppc64 * add powerpc*-darwin to configure.ac * fix thread_pthread for older systems
This commit is contained in:
parent
84257244cd
commit
539459abda
Notes:
git
2022-05-22 12:02:28 +09:00
Merged-By: ioquatix <samuel@codeotaku.com>
8 changed files with 291 additions and 7 deletions
|
@ -6,7 +6,11 @@
|
|||
# include "coroutine/amd64/Context.h"
|
||||
#elif defined __i386__
|
||||
# include "coroutine/x86/Context.h"
|
||||
#elif defined __ppc64__
|
||||
#elif defined __ppc__
|
||||
# include "coroutine/ppc/Context.h"
|
||||
#elif defined __ppc64__ && defined(WORDS_BIGENDIAN)
|
||||
# include "coroutine/ppc64/Context.h"
|
||||
#elif defined __ppc64__ && !defined(WORDS_BIGENDIAN)
|
||||
# include "coroutine/ppc64le/Context.h"
|
||||
#elif defined __arm64__
|
||||
# include "coroutine/arm64/Context.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue