lua-users home
lua-l archive

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


On Thu, 25 Nov 2010 21:37:39 +0100, Gilles Ganault
<gilles.ganault@free.fr> wrote:
>/tmp> ./lua
>lua: applet not found

Problem solved: I was missing the right switch, so that the binaries
were compiled as FDPIC ELF instead of FLAT:

/usr/src/lua-5.1.4# file lua
lua: BFLT executable - version 4 ram

After downloading and running this version, I can successfully get a
shell :-)

/tmp> ./lua
Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio
> print "hello"
hello
>

I'll investigate why it didn't work as an FDPIC ELF, and then try to
compile the modules I need.

Thank you.