lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>There is a guy here (Renato Borges) that already implemented a cross 
>platform load package facility (for Linux, Solaris, Windows and others). It 
>is called "loadlib: Dynamic library loading facilities for use with the Lua 
>language".

Ok, here I am. 
I put loadlib at http://www.tecgraf.puc-rio.br/~rborges/loadlib/.
As Roberto already said, it's a library for dynamic library loading
in Lua (CGILua currently uses loadlib).
It supports dll (ms-windows) and dlfcn (most unix flavors) APIs.
It also has the implementation for shl (hp-ux) and rld (NeXT) APIs, 
although not tested. 

--Renato