
cocos2d-x
iteye_9729
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
静态库类重复
如果两个静态库冲突的结构是相同的,可以考虑将两个静态库拆分出来进行合并。查看文件的架构有哪些$ lipo -info libzbar.aArchitectures in the fat file: libzbar.a are: armv7 (cputype (12) cpusubtype (11)) i386 将armv7解压出来lipo libzbar.a -thin armv7 -outpu...2015-01-19 19:08:16 · 412 阅读 · 0 评论 -
C++读取lua table
lua_pushnil(tolua_S); int index = lua_gettop(tolua_S); map<string, string> dict; // 现在的栈:-1 => nil; index => table index = index - 1; while (lua...原创 2015-02-02 14:36:26 · 288 阅读 · 0 评论