You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Q1:lua_cjson.c:597:58: error: macro “lua_integer2str” requires 3 arguments, but only 2 given
A:参照云风维护的luacjson,将lua_cjson.c中597行
len = lua_integer2str(strbuf_empty_ptr(json), num);
修改为
len = sprintf(strbuf_empty_ptr(json), LUA_INTEGER_FMT, num);
我刚学习skynet,发现了你的demo学习,编译过程中发现几个问题,
第一个是 cjson编译不过了,好像是因为lua升级了新版本
在客户端启动时加载srp.so的时候报出undefined symbol pthread_setspecific的错误,方便的话可以加下我的qq吗,50695351
The text was updated successfully, but these errors were encountered: