Downloading eLua

You have a few options for downloading eLua:

Binary images

Pre-built images of eLua can be downloaded for each official release. Only the latest official eLua release is covered in this paragraph; if you want to download a pre-built image from an older release (although this isn't generally advisable), check this page. Choose the corresponding image file from the table below, flash it into your board, connect a serial terminal (or Ethernet if you board supports) and enjoy eLua. Also note that eLua binaries, like the source code distribution, include some example programs in it's file system, so you can run and play them (yes! we have games too! :), following the instructions in our Using eLua page. The available example programs are described in our examples page.

If you need a customized binary image for an already supported platform (for example with an autorun program, with some code of yours in the File System, with your LAN IP settings) and the instructions for building eLua didn't work for you, feel free to write us explaining what you need. We may find some time to build one for you and eventually make it available here too.

To understand what's in a file name (for example elua_lualong_lm3s8962.bin) check our building eLua page.

Version MCU Board Lua number type Image file
0.5 AT91SAM7X256 SAM7-EX256 double elua0.5_lua_at91sam7x256.bin
0.5 AT91SAM7X512 None double elua0.5_lua_at91sam7x512.bin
0.5 i386 (generic)
PCs/emulators double elua0.5_lua_i386.elf
0.5 LM3S6965 EKx-LM3S6965 double elua0.5_lua_lm3s6965.bin
0.5 LM3S8962 EKx-LM3S8962 double elua0.5_lua_lm3s8962.bin
0.5 LPC2888 LPC-H2888 double elua0.5_lua_lpc2888.bin
0.5 STR711FR2 MOD711 double elua0.5_lua_str711fr2.bin
0.5 STR912FAW44 STR9-comStick double elua0.5_lua_str912fw44.bin

NOTE: Lua number type reffers to the built Lua interpreter number type, float or integer, as explained in the building eLua page.

Source code

If all you want is to take a quick peek at eLua's source code, but you don't need to download it, it's probably enough to use the BerliOS WebSVN interface. You can browse through the complete source of eLua using this method.
If you need to download the source code of eLua you can either:

Source code archives

Check the table below for the download link of the source code associated with the latest official release of eLua. If you want to get the source code of an older version, check out this page.

Version Source code archive
0.5 eLua 0.5

SVN public repository (anonymous)

If you'd rather have the very last development ("bleeding edge") version, just check it out from our Subversion Repository:

$ svn checkout svn://svn.berlios.de/elua/trunk

Once checked out, the repository can be easily updated by the svn client command:

$ svn update

SVN public repository (r/w, for developers)

Follow the steps below if you need write access to the eLua repository:

Then checkout the repository:

$ export SVN_SSH='ssh -l <yourberliosid>
$ svn checkout svn+ssh://svn.berlios.de/svnroot/repos/elua/trunk

Once checked out, the repository can be easily updated:

$ svn update