From c38e9111478773a20656bfe5329cdab78dfb075b Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 16 Aug 2022 12:51:16 -0700 Subject: [PATCH] Allow aarch64 to build YJIT --- yjit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yjit.h b/yjit.h index 1f507f1b51..c9dc52c9b6 100644 --- a/yjit.h +++ b/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