Diet Food Diet (nutrition), the sum of the food consumed by an organism or group Dieting, the deliberate selection of food to control body weight or n ...
分类:
其他好文 时间:
2017-01-01 09:26:37
阅读次数:
415
一) 、建立lua源代码工程,编译lua的静态库 1、下载Lua源码 http://www.lua.org/download.html a 下载后解压到一个目录下,这里假设解压到D:\lua-5.1.5b 注意下载的版本,如果是5.2.x,后面代码中的C API发生了改变2、在VS2010中新建一个 ...
分类:
其他好文 时间:
2016-09-10 17:53:21
阅读次数:
181
以上过程基本参照http://www.makaidong.com/149671.html内容。 步骤: 1,下载安装cygwin和所需的一些模块,此处略。 2,下载并手工编译安装lua-5.1.5。注意事项:默认的Makefile中没有开启动态加载模块功能,需修改。 我们修改lua源码文件下的 sr ...
最近正在阅读lua源码,遇到座灯塔,转载如下: 我个人的习惯是带着问题去研究一个新题目,比如这次阅读Lua代码,暂列下面这些问题。 1)什么是基于栈、基于寄存器的虚拟机(VM)设计?Lua如何实现基于寄存器的设计? 2)Lua如何解析一段代码,生成中间代码? 3)Lua如何使用VM运行中间代码? 4 ...
分类:
其他好文 时间:
2016-08-23 13:22:44
阅读次数:
249
lmathlib.c,lstrlib.c:getfamiliarwiththeexternalCAPI.Don‘tbotherwiththepatternmatcherthough.Justtheeasyfunctions.lapi.c:CheckhowtheAPIisimplementedinternally.Onlyskimthistogetafeelingforthecode.Cross-referencetolua.handluaconf.hasneeded.lobject.h:taggedvalue..
分类:
其他好文 时间:
2016-08-22 16:37:48
阅读次数:
170
https://www.reddit.com/comments/63hth/ask_reddit_which_oss_codebases_out_there_are_so/c02pxbp Online Lua 5.3 source code browser Recommended reading o ...
分类:
其他好文 时间:
2016-05-26 21:55:31
阅读次数:
220
通过使用VC下的CL编译器,可方便地编译Lua源码,而无需构造工程并设置各种选项;以下以源码Lua5.3.1版本为例,将通过CL编译选项直接编译源码,为方便编译将采用批处理脚本,脚本放置在Lua解压后的目录下如:Lua.bat,具体内容如下: mkdir bincd srcdel *.objc...
分类:
其他好文 时间:
2015-10-21 17:14:41
阅读次数:
264
转自:http://www.jb51.net/article/55471.htm一、准备工作1、下载Lua源码,地址:http://www.lua.org/download.html(我用的是目前最新版5.2.3)2、将源码放在合适的盘(我的在D盘,路径D:/Lua-5.2.3/src)3、打开vs...
分类:
其他好文 时间:
2015-09-23 19:17:57
阅读次数:
220
lua官方的源码包里面的Makefile文件没有针对windows nmake工具的Makefile文件,但其官方给出的Makefile的书写很工整,很容易就模仿一个nmake版本的Makefile,文件我放到了这里。把nmake版本的文件(Lua53.Makefile.nmake)放到lua源码的...
分类:
其他好文 时间:
2015-09-12 00:41:54
阅读次数:
239
http://blog.csdn.net/cnjet/article/details/7023526Online Lua 5.1 source code browserRecommended reading order:lmathlib.c, lstrlib.c: get familiar with...
分类:
其他好文 时间:
2015-09-03 10:21:50
阅读次数:
169