- 
                Notifications
    You must be signed in to change notification settings 
- Fork 10
Open
Description
The error (with paths stripped)
?/gasp/src/../OTG/lua/init.lua:27: ?/gasp/src/../OTG/lib/moonnuklear.so: undefined symbol: lua_newuserdatastack traceback:
My lua code
function Require(name,report_lib_error)
	if not name then
		trace()
		return nil
	end
	local path = os.getenv("GASP_PATH") .. "/lib/" .. name .. ".so"
	local func, err = loadlib(path,'luaopen_' .. name)
	if not func then
		if report_lib_error then
			dump_lua_stack()
			error(err .. debug.traceback())
			return nil
		end
		path = os.getenv("GASP_PATH") .. "/lua/" .. name
		func, err = loadfile(path)
		if not func then
			dump_lua_stack()
			error(err .. debug.traceback())
			return nil
		end
	end
	return func, pcall( func )
end
Metadata
Metadata
Assignees
Labels
No labels