lua-users home
lua-l archive

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


On Tue, Aug 17, 2010 at 3:31 PM, Martin <wtxnh-lua@yahoo.com.au> wrote:
> Anybody has a clue what is really wrong here and how do I need to
> cross-compile it?

Did you use something like this?

if alien.platform == "windows" then
   libc = alien.load("msvcrt.dll")
else
   libc = alien.default
end

I remember having to make this edit for Alien to work on LfW with the
libc example

steve d.