我正在使用LuaProfiler,我已将其编译到我的iOS应用程序中。我这样使用它: http://luaprofiler.luaforge.net/manual.html
function GameManager:startGame()
profiler.start( getWritablePath() .. "GameManager.xxx")
print("GameManager:startGame()")
--[[
a lot of code \
--]]
profiler.stop()
end
由于空函数堆栈
,我在分析器中崩溃了function_meter.c:断言失败:pause_total_time:stack_top null
我是否以错误的方式使用分析器? 也许它应该与其他一些参数一起编译,因为现在它和lua解释器一样。 应该改变什么来使它工作,或者我应该在哪里寻找答案?