
lua
hulefei29
我就是我
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Lua vs. Obj-C
LuaFor some time now I’ve been digging into Lua. Coming from Python, the power of a clean syntax and good documentation is impossible to ignore. Lua is a powerful, fast, lightweight, embeddable s...原创 2012-12-17 09:57:59 · 118 阅读 · 0 评论 -
How to install Lua 5 in Mac OS X Leopard
Open up terminal. Copy the link of the latest Lua version and download it: cd /tmpwget http://www.lua.org/ftp/lua-5.1.4.tar.gz Extract and compile:tar -xzvf lua-5.1.4.tar.gzcd lua...原创 2012-12-30 23:46:05 · 120 阅读 · 0 评论 -
lua5.2.3编译笔记
1.进入root权限-su root 2.输入密码 3.修改PLAT为installPLAT= install //安装PLAT= uninstall //卸载 4.使用make命令编译make原创 2013-12-23 12:00:51 · 122 阅读 · 0 评论 -
【Lua】撸啊!第一弹:Lua开发环境搭建(Mac OS X)
Lua官方网站:http://www.lua.org维基百科:http://en.wikipedia.org/wiki/Lua_(programming_language) 1、 安装RudixRudix: http://rudix.orgRudix is a collection of pre-built Unix software delivered as packa...原创 2013-10-14 14:29:36 · 743 阅读 · 0 评论 -
Mac下Lua的环境搭建
直接去Lua官网下载一个最新版的代码,我下载的是Lua 5.2.1,然后进入下载目录,执行以下步骤进行安装。 Shell代码 tar xvzf lua-5.2.1.tar.gz cd lua-5.2.1 make macosx sudo make install 这样就把Lua直接安装到/usr/local/bin下了。...原创 2014-08-20 17:46:31 · 116 阅读 · 0 评论