aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2011-06-02 03:19:23 +0200
committerMike Pall <mike>2011-06-02 03:19:23 +0200
commit84e33332a73ed978099754309abea03245a875bf (patch)
treeb626e88a076e4cb9e7fd993a90a866cd52ae47cb
parent5d82cfd091815f44cedf698cb3b3bd1ec8177430 (diff)
downloadluajit-84e33332a73ed978099754309abea03245a875bf.tar.gz
luajit-84e33332a73ed978099754309abea03245a875bf.tar.bz2
luajit-84e33332a73ed978099754309abea03245a875bf.zip
ARM: Enable JIT compiler (except for iOS).
-rw-r--r--src/lj_arch.h3
1 files changed, 3 insertions, 0 deletions
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 @@
139#define LJ_TARGET_MASKROT 1 139#define LJ_TARGET_MASKROT 1
140#define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */ 140#define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */
141#define LJ_ARCH_DUALNUM 2 141#define LJ_ARCH_DUALNUM 2
142#if LJ_TARGET_OSX
143/* Runtime code generation is restricted on iOS. Complain to Apple, not me. */
142#define LJ_ARCH_NOJIT 1 144#define LJ_ARCH_NOJIT 1
145#endif
143 146
144#elif LUAJIT_TARGET == LUAJIT_ARCH_PPC 147#elif LUAJIT_TARGET == LUAJIT_ARCH_PPC
145 148