From 2f933e86b41b1112e6697f95cba7f541f029af8b Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 13 Jan 2013 17:32:23 +1000 Subject: Remove unused LuaJIT 1.1.7, since the 2.0 version works fine. --- libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html | 159 -------------------------- 1 file changed, 159 deletions(-) delete mode 100644 libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html (limited to 'libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html') diff --git a/libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html b/libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html deleted file mode 100644 index bc9105b..0000000 --- a/libraries/LuaJIT-1.1.7/jitdoc/luajit_run.html +++ /dev/null @@ -1,159 +0,0 @@ - - - -Running LuaJIT - - - - - - - - -
-Lua -
- - -
-

-LuaJIT has only a single stand-alone executable, called luajit. -It can be used to run simple Lua statements or whole Lua applications -from the command line. It has an interactive mode, too. -

-

-Note: The optimizer is not activated by default because it resides -in an external module -(see Installing LuaJIT). -It's recommended to always use the optimizer, i.e.: luajit -O -

- -

Command Line Options

-

-The luajit stand-alone executable is just a slightly modified -version of the regular lua stand-alone executable. -It supports the same basic options, too. Please have a look at the -Manual Page -for the regular lua stand-alone executable. -

-

-Two additional options control LuaJIT behaviour: -

- -

-j cmd[=value]

-

-This option performs a LuaJIT control command. LuaJIT has a small -but extensible set of control commands. It's easy to add your own. -

-

-The command is first searched for in the jit.* library. -If no matching function is found, a module named jit.<cmd> -is loaded. The module table must provide a start() function. -

-

-For the -j cmd form the function is called without an argument. -Otherwise the value is passed as the first argument (a string). -

-

-Here are the built-in LuaJIT control commands: -

- -

-The following control commands are loaded from add-on modules: -

- - - -

-O[level]

-

-This option loads and runs the optimizer module jit.opt. -The optimizer generates hints for the compiler backend to improve -the performance of the compiled code. The optimizer slows down -compilation slightly, but the end result should make up for it -in almost every case. -

-

-The -O form sets the default optimizer level, which is -currently 2 (this may change in future versions -of LuaJIT). -

-

-The -Olevel form explicitly sets the optimizer level: -

- - -
-
- - - -- cgit v1.1