lua-users home
lua-l archive

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


> dyld: lazy symbol binding failed: Symbol not found: _luaL_findstring

luaL_findstring no longer exists in Lua 5.1. For the moment, the best bet
is to copy it from Lua 5.0 and add it to lxplib.c.
	http://www.lua.org/source/5.0/src_lib_lauxlib.c.html#luaL_findstring

--lhf