summaryrefslogtreecommitdiff
path: root/src/lj_errmsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_errmsg.h')
-rw-r--r--src/lj_errmsg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h
index da40e848..f368da5a 100644
--- a/src/lj_errmsg.h
+++ b/src/lj_errmsg.h
@@ -102,7 +102,11 @@ ERRDEF(STRFMTW, "invalid format (width or precision too long)")
102ERRDEF(STRGSRV, "invalid replacement value (a %s)") 102ERRDEF(STRGSRV, "invalid replacement value (a %s)")
103ERRDEF(BADMODN, "name conflict for module " LUA_QS) 103ERRDEF(BADMODN, "name conflict for module " LUA_QS)
104#if LJ_HASJIT 104#if LJ_HASJIT
105#if LJ_TARGET_X86ORX64
105ERRDEF(NOJIT, "JIT compiler disabled, CPU does not support SSE2") 106ERRDEF(NOJIT, "JIT compiler disabled, CPU does not support SSE2")
107#else
108ERRDEF(NOJIT, "JIT compiler disabled")
109#endif
106#elif defined(LJ_ARCH_NOJIT) 110#elif defined(LJ_ARCH_NOJIT)
107ERRDEF(NOJIT, "no JIT compiler for this architecture (yet)") 111ERRDEF(NOJIT, "no JIT compiler for this architecture (yet)")
108#else 112#else