Tiny Core Extensions > TCE 2.x
lua
(1/1)
Jason W:
Thanks to vitex for:
--- Code: ---Title: lua.tcz (TESTING)
Description: lua scripting language
Version: 1.5.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 111K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation.
-----------------------------------------------------
This extension was built from
http://www.lua.org/ftp/lua-5.1.4.tar.gz
using the
MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN\
-march=i486 -mtune=i686 -Os -pipe"
MYLIBS="-lm -Wl,-E -ldl"
make CFLAGS="$MYCFLAGS" LIBS="$MYLIBS" generic
This extension does not have readline support; it is
intended for scripting instead of interactive use.
This extension contains
* "lua", the lua compiler / interpreter, and
* "luac", the compiler part of "lua" that produces
byte code.
Only "lua" is needed for scripting.
-----------------------------------------------------
Change-log: 2009/12/30 Only contains lua and luac.
Current: 2009/12/30 First version
--- End code ---
Jason W:
Thanks to vitex for an update:
--- Code: ---Title: lua.tcz (TESTING)
Description: Lua scripting language
Version: 5.1.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 116.0K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation. In
particular, the "Lua 5.1 Reference Manual" is
http://www.lua.org/manual/5.1/
and "Programming in Lua" (first edition about Lua 5.0) is
http://www.lua.org/pil/
-----------------------------------------------------
This extension was built from
http://www.lua.org/ftp/lua-5.1.4.tar.gz
using the
MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN\
-DLUA_USE_READLINE -march=i486 -mtune=i686 -Os -pipe"
MYLIBS="-lm -Wl,-E -ldl -lreadline -lhistory -lncurses"
make CFLAGS="$MYCFLAGS" LIBS="$MYLIBS" generic
This extension contains
* "lua", the Lua compiler / interpreter, and
* "luac", the compiler part of "lua" that produces
byte code.
Only "lua" is needed for scripting. See lua-dev.tcz
for the developmental files from the Lua distribution.
-----------------------------------------------------
Change-log: 2009/12/30 First version
Current: 2010/01/01 Rebuilt with support for readline
--- End code ---
--- Code: ---Title: lua-dev.tcz (TESTING)
Description: Lua developmental files
Version: 5.1.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 112.0K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation.
-----------------------------------------------------
This extension contains the developmental files that
go with lua.tcz. These files are needed to prepare a
C or C++ module that can be loaded at run-time to
extend the Lua interpreter.
-----------------------------------------------------
Change-log: ----------
Current: 2010/01/01 First version
--- End code ---
Jason W:
Thanks to vitex for an update:
--- Code: ---Title: lua-dev.tcz (TESTING)
Description: Lua developmental files
Version: 5.1.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 112.0K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation.
-----------------------------------------------------
This extension contains the developmental files that
go with lua.tcz. These files are needed to prepare a
C or C++ module that can be loaded at run-time to
extend the Lua interpreter.
-----------------------------------------------------
Change-log: ----------
2010/01/01 First version
Current: 2010/04/03 Added /usr/local/lib/pkgconfig/lua.pc
--- End code ---
--- Code: ---Title: lua-doc.tcz (TESTING)
Description: Lua developmental files
Version: 5.1.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 124.0K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation.
-----------------------------------------------------
This extension contains the documentation files that
go with lua.tcz. See /usr/local/share/lua/{doc,etc}.
-----------------------------------------------------
Change-log: ----------
Current: 2010/04/03 First version
--- End code ---
--- Code: ---Title: lua.tcz (TESTING)
Description: Lua scripting language
Version: 5.1.4
Author: team AT lua.org
Original-site: http://www.lua.org
Copying-policy: MIT License
Size: 116.0K
Extension_by: vitex
Comments: http://www.lua.org/about.html:
Lua is a powerful, fast, lightweight, embeddable
scripting language.
Lua combines simple procedural syntax with powerful
data description constructs based on associative
arrays and extensible semantics. Lua is dynamically
typed, runs by interpreting bytecode for a
register-based virtual machine, and has automatic
memory management with incremental garbage collection,
making it ideal for configuration, scripting, and
rapid prototyping.
See http://www.lua.org/docs.html for documentation. In
particular, the "Lua 5.1 Reference Manual" is
http://www.lua.org/manual/5.1/
and "Programming in Lua" (first edition about Lua 5.0) is
http://www.lua.org/pil/
-----------------------------------------------------
This extension was built from
http://www.lua.org/ftp/lua-5.1.4.tar.gz
using the
MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN\
-DLUA_USE_READLINE -march=i486 -mtune=i686 -Os -pipe"
MYLIBS="-lm -Wl,-E -ldl -lreadline -lhistory -lncurses"
make CFLAGS="$MYCFLAGS" LIBS="$MYLIBS" generic
This extension contains
* "lua", the Lua compiler / interpreter, and
* "luac", the compiler part of "lua" that produces
byte code.
Only "lua" is needed for scripting. See lua-dev.tcz
for the developmental files from the Lua distribution
and lua-doc.tcz for the documentation files.
-----------------------------------------------------
Change-log: 2009/12/30 First version
2010/01/01 Rebuilt with support for readline
Current: 2010/04/03 Added lua-doc.tcz
--- End code ---
Navigation
[0] Message Index
Go to full version