lua-users home
lua-l archive

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


> The result was that ".lua_pushnil" was unrecognized during "ld".

This means that lua_pushnil is not being exported from the lua executable.
Under gcc, in several platforms, the magic to make this happen is to add
-Wl,-E when building the standalone interpreter. I don't know how to do
this with xlc, sorry. Any AIX and xlc experts around?
--lhf