diff options
author | David Walter Seikel | 2012-01-23 23:36:30 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-23 23:36:30 +1000 |
commit | 6523585c66c04cea54df50013df8886b589847d8 (patch) | |
tree | 0b22aee7064166d88595eda260ca2d17c0773da5 /libraries/LuaJIT-1.1.7/README | |
parent | Update the EFL to what I'm actually using, coz I'm using some stuff not yet r... (diff) | |
download | SledjHamr-6523585c66c04cea54df50013df8886b589847d8.zip SledjHamr-6523585c66c04cea54df50013df8886b589847d8.tar.gz SledjHamr-6523585c66c04cea54df50013df8886b589847d8.tar.bz2 SledjHamr-6523585c66c04cea54df50013df8886b589847d8.tar.xz |
Add luaproc and LuaJIT libraries.
Two versions of LuaJIT, the stable release, and the dev version. Try the dev version first, until ih fails badly.
Diffstat (limited to 'libraries/LuaJIT-1.1.7/README')
-rw-r--r-- | libraries/LuaJIT-1.1.7/README | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/libraries/LuaJIT-1.1.7/README b/libraries/LuaJIT-1.1.7/README new file mode 100644 index 0000000..3af04b8 --- /dev/null +++ b/libraries/LuaJIT-1.1.7/README | |||
@@ -0,0 +1,46 @@ | |||
1 | README for LuaJIT 1.1.7 | ||
2 | ----------------------- | ||
3 | |||
4 | ************************************************************ | ||
5 | * This is only a bugfix release for the LuaJIT 1.1 branch. * | ||
6 | * LuaJIT 2.0 is available with much improved performance! * | ||
7 | ************************************************************ | ||
8 | |||
9 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. | ||
10 | |||
11 | Lua is a powerful, light-weight programming language designed | ||
12 | for extending applications. Lua is also frequently used as a | ||
13 | general-purpose, stand-alone language. More information about | ||
14 | Lua can be found in the docs (see below) or at: http://www.lua.org/ | ||
15 | |||
16 | LuaJIT 1.x is based on the Lua 5.1.x virtual machine and bytecode | ||
17 | interpreter from lua.org. It compiles bytecode to native x86 (i386+) | ||
18 | machine code to speed up the execution of Lua programs. | ||
19 | |||
20 | Homepage: http://luajit.org/ | ||
21 | |||
22 | LuaJIT is Copyright (C) 2005-2011 Mike Pall. LuaJIT is free | ||
23 | software, released under the MIT/X license. | ||
24 | |||
25 | ----------------------- | ||
26 | |||
27 | Full documentation for LuaJIT is available in HTML format. | ||
28 | Please point your favourite browser to: | ||
29 | |||
30 | jitdoc/luajit.html | ||
31 | |||
32 | Detailed installation instructions are here: | ||
33 | |||
34 | jitdoc/luajit_install.html | ||
35 | |||
36 | The original documentation for Lua has been included for convenience: | ||
37 | |||
38 | doc/readme.html | ||
39 | |||
40 | ----------------------- | ||
41 | |||
42 | LuaJIT 1.1.7 is a heavily modified version of Lua 5.1.4. | ||
43 | The unmodified Lua distribution is available at: | ||
44 | |||
45 | http://www.lua.org/ftp/lua-5.1.4.tar.gz | ||
46 | |||