From 84e33332a73ed978099754309abea03245a875bf Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Thu, 2 Jun 2011 03:19:23 +0200 Subject: [PATCH] ARM: Enable JIT compiler (except for iOS). --- src/lj_arch.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lj_arch.h b/src/lj_arch.h index a234a400..14448565 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h @@ -139,7 +139,10 @@ #define LJ_TARGET_MASKROT 1 #define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */ #define LJ_ARCH_DUALNUM 2 +#if LJ_TARGET_OSX +/* Runtime code generation is restricted on iOS. Complain to Apple, not me. */ #define LJ_ARCH_NOJIT 1 +#endif #elif LUAJIT_TARGET == LUAJIT_ARCH_PPC