mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Allow aarch64 to build YJIT
This commit is contained in:
parent
95dce1ccac
commit
c38e911147
1 changed files with 2 additions and 2 deletions
4
yjit.h
4
yjit.h
|
@ -17,8 +17,8 @@
|
|||
|
||||
#if USE_YJIT
|
||||
|
||||
// We generate x86 assembly
|
||||
#if defined(_WIN32) ? defined(_M_AMD64) : defined(__x86_64__)
|
||||
// We generate x86 or arm64 assembly
|
||||
#if defined(_WIN32) ? defined(_M_AMD64) : (defined(__x86_64__) || defined(__aarch64__))
|
||||
// x86_64 platforms without mingw/msys or x64-mswin
|
||||
#else
|
||||
# error YJIT unsupported platform
|
||||
|
|
Loading…
Reference in a new issue