aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/LuaJIT-1.1.7/README
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-23 23:36:30 +1000
committerDavid Walter Seikel2012-01-23 23:36:30 +1000
commit6523585c66c04cea54df50013df8886b589847d8 (patch)
tree0b22aee7064166d88595eda260ca2d17c0773da5 /libraries/LuaJIT-1.1.7/README
parentUpdate the EFL to what I'm actually using, coz I'm using some stuff not yet r... (diff)
downloadSledjHamr-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 '')
-rw-r--r--libraries/LuaJIT-1.1.7/README46
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 @@
1README 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
9LuaJIT 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
16LuaJIT 1.x is based on the Lua 5.1.x virtual machine and bytecode
17interpreter from lua.org. It compiles bytecode to native x86 (i386+)
18machine code to speed up the execution of Lua programs.
19
20Homepage: http://luajit.org/
21
22LuaJIT is Copyright (C) 2005-2011 Mike Pall. LuaJIT is free
23software, released under the MIT/X license.
24
25-----------------------
26
27Full documentation for LuaJIT is available in HTML format.
28Please point your favourite browser to:
29
30 jitdoc/luajit.html
31
32Detailed installation instructions are here:
33
34 jitdoc/luajit_install.html
35
36The original documentation for Lua has been included for convenience:
37
38 doc/readme.html
39
40-----------------------
41
42LuaJIT 1.1.7 is a heavily modified version of Lua 5.1.4.
43The unmodified Lua distribution is available at:
44
45 http://www.lua.org/ftp/lua-5.1.4.tar.gz
46