diff options
author | Lua Team <team@lua.org> | 1996-05-14 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 1996-05-14 12:00:00 +0000 |
commit | 721542976ebc89f2f8d17d19be7e4426570b69be (patch) | |
tree | 0c79a45c63aa89d6e4b8ac80931e46d74a72f8cb /INSTALL | |
parent | 71754d2f6423fb9b6e87658e58bafc5470d53f65 (diff) | |
download | lua-github-2.4.tar.gz |
Lua 2.42.4
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL new file mode 100644 index 00000000..94d004de --- /dev/null +++ b/INSTALL @@ -0,0 +1,26 @@ +* Installation + Installing Lua should be very easy: + + 1. Edit "config" to suit your platform, if at all necessary + 2. Then, type "make" + +* What you get + If make succeeds, you get: + * a compiler and an interpreter in ./bin/lua; + * libraries in ./lib; + * include files in ./include. + + There is a reference manual in ./doc, and tests and examples in ./test. + You don't need these directories for development. + +* If you have problems (and solutions!) + If make fails, please let us know (lua@icad.puc-rio.br). + If you make changes to "config", please send them to us. + +* Shared libraries + If you are running SunOs 4.x, type the following after "make" succeeds: + ld -o lib/liblua.so.2.4 src/*.o + ld -o lib/liblualib.so.2.4 clients/lib/*.o + + For AIX, the OpenGL clone Mesa includes a script for making shared libraries. + For other systems, please let us know how! |