We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa3532 commit 0e74ffeCopy full SHA for 0e74ffe
yjit.h
@@ -17,8 +17,8 @@
17
18
#if USE_YJIT
19
20
-// We generate x86 assembly
21
-#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__))
22
// x86_64 platforms without mingw/msys or x64-mswin
23
#else
24
# error YJIT unsupported platform
0 commit comments