From 3e5c031d981ec327990ad4a157f2f59f8de9a32a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Fri, 3 Feb 2012 15:03:46 +1000 Subject: Switch to using LuaJIT for compiling. --- LuaSL/src/LuaSL_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'LuaSL/src/LuaSL_compile.c') diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index cf19c99..d68161a 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c @@ -2232,7 +2232,7 @@ static boolean doneParsing(LuaSL_compiler *compiler) outputLeaf(out, OM_LUA, compiler->ast); fprintf(out, "\n\n--// End of generated code.\n\n"); fclose(out); - sprintf(buffer, "luac \"%s\"", luaName); + sprintf(buffer, "../../libraries/luajit-2.0/src/luajit \"%s\"", luaName); count = system(buffer); if (0 != count) { -- cgit v1.1