lua-users home
lua-l archive

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


On Fri, Sep 11, 2020 at 5:02 PM Egor Skriptunoff
<egor.skriptunoff@gmail.com> wrote:

> Can this LUA.EXE load external modules?
> "require" says it is searching for .so modules at non-DOS paths.
> Is loading of binary modules not implemented here?

They say "compiled from the source code available here
[https://www.lua.org/ftp/lua-5.4.0.tar.gz]"; so I guess it is stock Lua
source code, compiled in a non-POSIX, non-Windows environment, so no
support for dynamic libraries. MS-DOS has no such notion anyway. You
might roll your own, though.

Cheers,
V.