lua-users home
lua-l archive

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


2010/1/25 Ignacio Burgueño <ignaciob@inconcertcc.com>:
> You can grab the sources here:
>
> http://github.com/davidm/luacom
>

Got it.  Cross compiled luacom_console from Ubuntu Jaunty.  Works marvelously.

lua_dofile in line 2623 of luacom.cpp is depreciated.  Replaced with
luaL_loadfile(L, "luacom5.lua") != 0 || lua_pcall(L, 0, 0, 0);

I choose LUA_DEBUGGING because I'm not sure whether luac compilation
is platform dependent.  And I don't want to do part of the compilation
on a win32 machine and then move back to Jaunty.

Also I can't make DLL work.  It keeps giving "error loading module
'luacom' from file '.\luacom.dll';".  Probably with luaopen_luacom
call or the path.

cheers, and thank you for luacom